forked from mirror/openmw-tes3mp
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.
31 lines
548 B
C++
31 lines
548 B
C++
8 years ago
|
#ifndef OPENMW_ACTORPACKET_HPP
|
||
|
#define OPENMW_ACTORPACKET_HPP
|
||
|
|
||
|
#include <string>
|
||
|
#include <RakNetTypes.h>
|
||
|
#include <BitStream.h>
|
||
|
#include <PacketPriority.h>
|
||
|
#include <components/openmw-mp/Base/BaseEvent.hpp>
|
||
|
|
||
|
#include <components/openmw-mp/Packets/BasePacket.hpp>
|
||
|
|
||
|
|
||
|
namespace mwmp
|
||
|
{
|
||
|
class ActorPacket : public BasePacket
|
||
|
{
|
||
|
public:
|
||
|
ActorPacket(RakNet::RakPeerInterface *peer);
|
||
|
|
||
|
~ActorPacket();
|
||
|
|
||
|
void setEvent(BaseEvent *event);
|
||
|
|
||
|
protected:
|
||
|
BaseEvent *event;
|
||
|
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif //OPENMW_ACTORPACKET_HPP
|