mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-22 09:23:52 +00:00
29 lines
474 B
C++
29 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();
|
||
|
}
|
||
|
};
|
||
|
}
|
||
|
|