forked from mirror/openmw-tes3mp
6f7771d97e
Simplify ContainsPacket and fix GetPacket
17 lines
397 B
C++
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
|