1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-02-01 03:15:32 +00:00
openmw-tes3mp/components/openmw-mp/Controllers/WorldstatePacketController.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
429 B
C++

#ifndef OPENMW_WORLDSTATEPACKETCONTROLLER_HPP
#define OPENMW_WORLDSTATEPACKETCONTROLLER_HPP
#include "../Packets/Worldstate/WorldstatePacket.hpp"
#include "BasePacketController.hpp"
namespace mwmp
{
class WorldstatePacketController: public BasePacketController<WorldstatePacket>
{
public:
WorldstatePacketController(RakNet::RakPeerInterface *peer);
};
}
#endif //OPENMW_WORLDSTATEPACKETCONTROLLER_HPP