1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-04-04 12:06:42 +00:00
openmw-tes3mp/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