mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 05:19:55 +00:00
30 lines
568 B
C++
30 lines
568 B
C++
#ifndef OPENMW_ACTORPACKET_HPP
|
|
#define OPENMW_ACTORPACKET_HPP
|
|
|
|
#include <string>
|
|
#include <RakNetTypes.h>
|
|
#include <BitStream.h>
|
|
#include <PacketPriority.h>
|
|
#include <components/openmw-mp/Base/BaseActor.hpp>
|
|
|
|
#include <components/openmw-mp/Packets/BasePacket.hpp>
|
|
|
|
|
|
namespace mwmp
|
|
{
|
|
class ActorPacket : public BasePacket
|
|
{
|
|
public:
|
|
ActorPacket(RakNet::RakPeerInterface *peer);
|
|
|
|
~ActorPacket();
|
|
|
|
void setActorList(BaseActorList *actorList);
|
|
|
|
protected:
|
|
BaseActorList *actorList;
|
|
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_ACTORPACKET_HPP
|