1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-22 09:23:52 +00:00
openmw-tes3mp/apps/openmw-mp/processors/player/ProcessorGUIWindow.hpp

29 lines
474 B
C++
Raw Normal View History

2017-11-25 15:47:02 +00:00
//
// Created by koncord on 23.11.17.
//
#pragma once
#include "../PlayerProcessor.hpp"
namespace mwmp
{
class ProcessorGUIWindow : public PlayerProcessor
{
public:
ProcessorGUIWindow()
{
BPP_INIT(ID_GUI_WINDOW)
}
void Do(PlayerPacket &packet, std::shared_ptr<Player> player) override
{
DEBUG_PRINTF(strPacketID.c_str());
player->getGUI().onGUIWindowAction();
}
};
}