2017-04-10 05:37:18 +00:00
|
|
|
#ifndef OPENMW_PACKETACTORTEST_HPP
|
|
|
|
#define OPENMW_PACKETACTORTEST_HPP
|
|
|
|
|
|
|
|
#include <components/openmw-mp/Packets/Actor/ActorPacket.hpp>
|
|
|
|
|
|
|
|
namespace mwmp
|
|
|
|
{
|
2017-12-09 02:13:14 +00:00
|
|
|
class PacketActorTest final: public ActorPacket
|
2017-04-10 05:37:18 +00:00
|
|
|
{
|
|
|
|
public:
|
2017-12-09 02:13:14 +00:00
|
|
|
explicit PacketActorTest(RakNet::RakPeerInterface *peer);
|
2017-04-10 05:37:18 +00:00
|
|
|
|
2017-12-09 02:13:14 +00:00
|
|
|
void Actor(BaseActor &actor, bool send) override;
|
2017-04-10 05:37:18 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif //OPENMW_PACKETACTORTEST_HPP
|