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.
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);
|
|
}
|