forked from teamnwah/openmw-tes3coop
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.
16 lines
365 B
C++
16 lines
365 B
C++
#include <components/openmw-mp/NetworkMessages.hpp>
|
|
#include <components/openmw-mp/Log.hpp>
|
|
#include "PacketActorSpeech.hpp"
|
|
|
|
using namespace mwmp;
|
|
|
|
PacketActorSpeech::PacketActorSpeech(RakNet::RakPeerInterface *peer) : ActorPacket(peer)
|
|
{
|
|
packetID = ID_ACTOR_SPEECH;
|
|
}
|
|
|
|
void PacketActorSpeech::Actor(BaseActor &actor, bool send)
|
|
{
|
|
RW(actor.sound, send);
|
|
}
|