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.
25 lines
692 B
C++
25 lines
692 B
C++
#ifndef OPENMW_OBJECTPROCESSOR_HPP
|
|
#define OPENMW_OBJECTPROCESSOR_HPP
|
|
|
|
|
|
#include <components/openmw-mp/Base/BasePacketProcessor.hpp>
|
|
#include <components/openmw-mp/Packets/BasePacket.hpp>
|
|
#include <components/openmw-mp/Packets/Object/ObjectPacket.hpp>
|
|
#include <components/openmw-mp/NetworkMessages.hpp>
|
|
#include "Script/Script.hpp"
|
|
#include "Player.hpp"
|
|
|
|
namespace mwmp
|
|
{
|
|
class ObjectProcessor : public BasePacketProcessor<ObjectProcessor>
|
|
{
|
|
public:
|
|
|
|
virtual void Do(ObjectPacket &packet, Player &player, BaseObjectList &objectList);
|
|
|
|
static bool Process(RakNet::Packet &packet, BaseObjectList &objectList) noexcept;
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_OBJECTPROCESSOR_HPP
|