mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-02 21:15:33 +00:00
15 lines
393 B
C++
15 lines
393 B
C++
#include <components/openmw-mp/NetworkMessages.hpp>
|
|
#include <components/openmw-mp/TimedLog.hpp>
|
|
#include "PacketActorSpellsActive.hpp"
|
|
|
|
using namespace mwmp;
|
|
|
|
PacketActorSpellsActive::PacketActorSpellsActive(RakNet::RakPeerInterface *peer) : ActorPacket(peer)
|
|
{
|
|
packetID = ID_ACTOR_SPELLS_ACTIVE;
|
|
}
|
|
|
|
void PacketActorSpellsActive::Actor(BaseActor &actor, bool send)
|
|
{
|
|
// Placeholder
|
|
}
|