mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 15:19:55 +00:00
9350e1d484
Create an entirely new PlayerCast packet for that purpose, but rename the already existing but unused ActorInteraction into ActorCast.
17 lines
377 B
C++
17 lines
377 B
C++
#ifndef OPENMW_PACKETACTORCAST_HPP
|
|
#define OPENMW_PACKETACTORCAST_HPP
|
|
|
|
#include <components/openmw-mp/Packets/Actor/ActorPacket.hpp>
|
|
|
|
namespace mwmp
|
|
{
|
|
class PacketActorCast : public ActorPacket
|
|
{
|
|
public:
|
|
PacketActorCast(RakNet::RakPeerInterface *peer);
|
|
|
|
virtual void Actor(BaseActor &actor, bool send);
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_PACKETACTORCAST_HPP
|