2017-04-09 05:51:28 +00:00
|
|
|
#ifndef OPENMW_ACTORPACKETCONTROLLER_HPP
|
|
|
|
#define OPENMW_ACTORPACKETCONTROLLER_HPP
|
|
|
|
|
|
|
|
|
|
|
|
#include "../Packets/Actor/ActorPacket.hpp"
|
2018-02-26 13:03:08 +00:00
|
|
|
#include "BasePacketController.hpp"
|
2017-04-09 05:51:28 +00:00
|
|
|
|
|
|
|
namespace mwmp
|
|
|
|
{
|
2018-02-26 13:03:08 +00:00
|
|
|
class ActorPacketController: public BasePacketController<ActorPacket>
|
2017-04-09 05:51:28 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
ActorPacketController(RakNet::RakPeerInterface *peer);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2017-04-09 13:32:44 +00:00
|
|
|
#endif //OPENMW_ACTORPACKETCONTROLLER_HPP
|