mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 19:49:56 +00:00
15 lines
374 B
C++
15 lines
374 B
C++
#include <components/openmw-mp/NetworkMessages.hpp>
|
|
#include "PacketJournal.hpp"
|
|
|
|
using namespace std;
|
|
using namespace mwmp;
|
|
|
|
PacketJournal::PacketJournal(RakNet::RakPeerInterface *peer) : PlayerPacket(peer)
|
|
{
|
|
packetID = ID_GAME_JOURNAL;
|
|
}
|
|
|
|
void PacketJournal::Packet(RakNet::BitStream *bs, BasePlayer *player, bool send)
|
|
{
|
|
PlayerPacket::Packet(bs, player, send);
|
|
}
|