openmw-tes3coop/components/openmw-mp/Controllers/ObjectPacketController.hpp
David Cernat 8a393d2984 Merge pull request #430 from TES3MP/0.6.3 while resolving conflicts
# Conflicts:
#	apps/openmw-mp/Networking.cpp
#	apps/openmw-mp/Networking.hpp
#	components/CMakeLists.txt
2018-05-18 08:12:28 +03:00

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