mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 08:49:55 +00:00
19 lines
427 B
C++
19 lines
427 B
C++
|
#ifndef OPENMW_PACKETPLAYERJOURNAL_HPP
|
||
|
#define OPENMW_PACKETPLAYERJOURNAL_HPP
|
||
|
|
||
|
#include <components/openmw-mp/Packets/Player/PlayerPacket.hpp>
|
||
|
|
||
|
namespace mwmp
|
||
|
{
|
||
|
class PacketPlayerJournal : public PlayerPacket
|
||
|
{
|
||
|
public:
|
||
|
PacketPlayerJournal(RakNet::RakPeerInterface *peer);
|
||
|
|
||
|
virtual void Packet(RakNet::BitStream *bs, BasePlayer *player, bool send);
|
||
|
};
|
||
|
}
|
||
|
|
||
|
|
||
|
#endif //OPENMW_PACKETPLAYERJOURNAL_HPP
|