forked from teamnwah/openmw-tes3coop
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
397 B
C++
18 lines
397 B
C++
#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);
|
|
|
|
virtual void Actor(BaseActor &actor, bool send);
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_PACKETACTORPOSITION_HPP
|