mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-24 17:09:40 +00:00
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
|