1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-22 06:53:51 +00:00
openmw-tes3mp/apps/openmw-mp/processors/player/ProcessorGUIWindow.hpp
2017-11-25 23:47:02 +08:00

28 lines
474 B
C++

//
// 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();
}
};
}