1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-02-24 16:39:39 +00:00
openmw-tes3mp/components/openmw-mp/Controllers/ActorPacketController.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_ACTORPACKETCONTROLLER_HPP
#define OPENMW_ACTORPACKETCONTROLLER_HPP
#include "../Packets/Actor/ActorPacket.hpp"
#include "BasePacketController.hpp"
namespace mwmp
{
class ActorPacketController: public BasePacketController<ActorPacket>
{
public:
ActorPacketController(RakNet::RakPeerInterface *peer);
};
}
#endif //OPENMW_ACTORPACKETCONTROLLER_HPP