openmw-tes3coop/components/openmw-mp/Packets/Player/PacketGUIWindow.hpp

20 lines
335 B
C++
Raw Normal View History

2017-11-25 15:36:42 +00:00
//
// Created by koncord on 15.11.17.
//
#pragma once
#include <components/openmw-mp/Packets/Player/PlayerPacket.hpp>
namespace mwmp
{
class PacketGUIWindow : public PlayerPacket
{
public:
PacketGUIWindow(RakNet::RakPeerInterface *peer);
virtual void Packet(RakNet::BitStream *bs, bool send);
};
}