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