forked from teamnwah/openmw-tes3coop
Create placeholder for ID_GAME_JOURNAL
parent
a69f294ef0
commit
e9b22814b9
@ -0,0 +1,15 @@
|
|||||||
|
#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);
|
||||||
|
}
|
@ -0,0 +1,18 @@
|
|||||||
|
#ifndef OPENMW_PACKETJOURNAL_HPP
|
||||||
|
#define OPENMW_PACKETJOURNAL_HPP
|
||||||
|
|
||||||
|
#include <components/openmw-mp/Packets/Player/PlayerPacket.hpp>
|
||||||
|
|
||||||
|
namespace mwmp
|
||||||
|
{
|
||||||
|
class PacketJournal : public PlayerPacket
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
PacketJournal(RakNet::RakPeerInterface *peer);
|
||||||
|
|
||||||
|
virtual void Packet(RakNet::BitStream *bs, BasePlayer *player, bool send);
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#endif //OPENMW_PACKETJOURNAL_HPP
|
Loading…
Reference in New Issue