1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-15 23:19:56 +00:00
openmw-tes3mp/components/openmw-mp/Packets/Actor/PacketActorPosition.hpp

18 lines
397 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 : public ActorPacket
{
public:
PacketActorPosition(RakNet::RakPeerInterface *peer);
2017-06-02 19:42:10 +00:00
virtual void Actor(BaseActor &actor, bool send);
2017-04-10 09:38:30 +00:00
};
}
#endif //OPENMW_PACKETACTORPOSITION_HPP