1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 19:49:56 +00:00
openmw-tes3mp/components/openmw-mp/Packets/Player/PacketJournal.cpp
2017-01-20 11:15:10 +02:00

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