#ifndef OPENMW_ACTORPROCESSOR_HPP #define OPENMW_ACTORPROCESSOR_HPP #include #include #include #include #include "Script/Script.hpp" #include "Player.hpp" namespace mwmp { class ActorProcessor : public BasePacketProcessor { public: virtual void Do(ActorPacket &packet, Player &player, BaseActorList &actorList); static bool Process(RakNet::Packet &packet, BaseActorList &actorList) noexcept; }; } #endif //OPENMW_ACTORPROCESSOR_HPP