1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-22 04:53:51 +00:00
openmw-tes3mp/components/openmw-mp/Controllers/WorldPacketController.hpp
Koncord 6f7771d97e [General] Move similar functions to BasePacketController
Simplify ContainsPacket and fix GetPacket
2018-02-26 21:03:08 +08:00

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