1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-22 08:53:52 +00:00
openmw-tes3mp/components/openmw-mp/Packets/Player/PacketGUIWindow.hpp

20 lines
341 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 final: public PlayerPacket
2017-11-25 15:36:42 +00:00
{
public:
PacketGUIWindow(RakNet::RakPeerInterface *peer);
void Packet(RakNet::BitStream *bs, bool send) override;
2017-11-25 15:36:42 +00:00
};
}