mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-24 18:39:41 +00:00
17 lines
389 B
C++
17 lines
389 B
C++
#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
|