mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-22 11:23:51 +00:00
15 lines
366 B
C++
15 lines
366 B
C++
|
#include <components/openmw-mp/NetworkMessages.hpp>
|
||
|
#include "PacketConsoleCommand.hpp"
|
||
|
|
||
|
using namespace mwmp;
|
||
|
|
||
|
PacketConsoleCommand::PacketConsoleCommand(RakNet::RakPeerInterface *peer) : WorldPacket(peer)
|
||
|
{
|
||
|
packetID = ID_CONSOLE_COMMAND;
|
||
|
}
|
||
|
|
||
|
void PacketConsoleCommand::Object(WorldObject &worldObject, bool send)
|
||
|
{
|
||
|
WorldPacket::Object(worldObject, send);
|
||
|
}
|