openmw-tes3coop/components/openmw-mp/Controllers/PlayerPacketController.hpp
Koncord 6f7771d97e [General] Move similar functions to BasePacketController
Simplify ContainsPacket and fix GetPacket
2018-02-26 21:03:08 +08:00

17 lines
397 B
C++

#ifndef OPENMW_PLAYERPACKETCONTROLLER_HPP
#define OPENMW_PLAYERPACKETCONTROLLER_HPP
#include "../Packets/Player/PlayerPacket.hpp"
#include "BasePacketController.hpp"
namespace mwmp
{
class PlayerPacketController: public BasePacketController<PlayerPacket>
{
public:
PlayerPacketController(RakNet::RakPeerInterface *peer);
};
}
#endif //OPENMW_PLAYERPACKETCONTROLLER_HPP