You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
706 B
C++
23 lines
706 B
C++
#ifndef OPENMW_BASEWORLDSTATEPROCESSOR_HPP
|
|
#define OPENMW_BASEWORLDSTATEPROCESSOR_HPP
|
|
|
|
#include <components/openmw-mp/Base/BasePacketProcessor.hpp>
|
|
#include <components/openmw-mp/Packets/BasePacket.hpp>
|
|
#include <components/openmw-mp/Packets/Worldstate/WorldstatePacket.hpp>
|
|
#include <components/openmw-mp/NetworkMessages.hpp>
|
|
#include "Player.hpp"
|
|
|
|
namespace mwmp
|
|
{
|
|
class WorldstateProcessor : public BasePacketProcessor<WorldstateProcessor>
|
|
{
|
|
public:
|
|
|
|
virtual void Do(WorldstatePacket &packet, Player &player, BaseWorldstate &worldstate);
|
|
|
|
static bool Process(RakNet::Packet &packet, BaseWorldstate &worldstate) noexcept;
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_BASEWORLDSTATEPROCESSOR_HPP
|