openmw-tes3coop/components/openmw-mp/Packets/Actor/PacketActorPosition.hpp

18 lines
412 B
C++
Raw Normal View History

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
{
class PacketActorPosition final: public ActorPacket
2017-04-10 09:38:30 +00:00
{
public:
explicit PacketActorPosition(RakNet::RakPeerInterface *peer);
2017-04-10 09:38:30 +00:00
void Actor(BaseActor &actor, bool send) override;
2017-04-10 09:38:30 +00:00
};
}
#endif //OPENMW_PACKETACTORPOSITION_HPP