forked from mirror/openmw-tes3mp
8a393d2984
# Conflicts: # apps/openmw-mp/Networking.cpp # apps/openmw-mp/Networking.hpp # components/CMakeLists.txt
17 lines
429 B
C++
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
|