forked from mirror/openmw-tes3mp
8a393d2984
# Conflicts: # apps/openmw-mp/Networking.cpp # apps/openmw-mp/Networking.hpp # components/CMakeLists.txt
17 lines
397 B
C++
17 lines
397 B
C++
#ifndef OPENMW_OBJECTPACKETCONTROLLER_HPP
|
|
#define OPENMW_OBJECTPACKETCONTROLLER_HPP
|
|
|
|
|
|
#include "../Packets/Object/ObjectPacket.hpp"
|
|
#include "BasePacketController.hpp"
|
|
|
|
namespace mwmp
|
|
{
|
|
class ObjectPacketController: public BasePacketController<ObjectPacket>
|
|
{
|
|
public:
|
|
ObjectPacketController(RakNet::RakPeerInterface *peer);
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_OBJECTPACKETCONTROLLER_HPP
|