2018-05-16 21:08:37 +00:00
|
|
|
#ifndef OPENMW_OBJECTPACKETCONTROLLER_HPP
|
|
|
|
#define OPENMW_OBJECTPACKETCONTROLLER_HPP
|
2016-10-19 17:36:11 +00:00
|
|
|
|
|
|
|
|
2018-05-12 16:40:00 +00:00
|
|
|
#include "../Packets/Object/ObjectPacket.hpp"
|
2018-02-26 13:03:08 +00:00
|
|
|
#include "BasePacketController.hpp"
|
2016-10-19 17:36:11 +00:00
|
|
|
|
|
|
|
namespace mwmp
|
|
|
|
{
|
2018-05-12 17:35:34 +00:00
|
|
|
class ObjectPacketController: public BasePacketController<ObjectPacket>
|
2016-10-19 17:36:11 +00:00
|
|
|
{
|
|
|
|
public:
|
2018-05-12 16:40:00 +00:00
|
|
|
ObjectPacketController(RakNet::RakPeerInterface *peer);
|
2016-10-19 17:36:11 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-05-16 21:08:37 +00:00
|
|
|
#endif //OPENMW_OBJECTPACKETCONTROLLER_HPP
|