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