1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-22 00:53:50 +00:00
openmw-tes3mp/components/openmw-mp/Controllers/WorldPacketController.hpp

18 lines
389 B
C++
Raw Normal View History

#ifndef OPENMW_WORLDPACKETCONTROLLER_HPP
#define OPENMW_WORLDPACKETCONTROLLER_HPP
#include "../Packets/World/WorldPacket.hpp"
#include "BasePacketController.hpp"
namespace mwmp
{
class WorldPacketController: public BasePacketController<WorldPacket>
{
public:
WorldPacketController(RakNet::RakPeerInterface *peer);
};
}
#endif //OPENMW_WORLDPACKETCONTROLLER_HPP