2017-04-11 08:37:38 +00:00
|
|
|
#ifndef OPENMW_PACKETACTORCELLCHANGE_HPP
|
|
|
|
#define OPENMW_PACKETACTORCELLCHANGE_HPP
|
|
|
|
|
|
|
|
#include <components/openmw-mp/Packets/Actor/ActorPacket.hpp>
|
|
|
|
|
|
|
|
namespace mwmp
|
|
|
|
{
|
2017-12-09 02:13:14 +00:00
|
|
|
class PacketActorCellChange final: public ActorPacket
|
2017-04-11 08:37:38 +00:00
|
|
|
{
|
|
|
|
public:
|
2017-12-09 02:13:14 +00:00
|
|
|
explicit PacketActorCellChange(RakNet::RakPeerInterface *peer);
|
2017-04-11 08:37:38 +00:00
|
|
|
|
2017-12-09 02:13:14 +00:00
|
|
|
void Actor(BaseActor &actor, bool send) override;
|
2017-04-11 08:37:38 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif //OPENMW_PACKETACTORCELLCHANGE_HPP
|