26 lines
437 B
C++
26 lines
437 B
C++
#pragma once
|
|
|
|
#include "GuiWidget.h"
|
|
#include "client/input/InputManager.h"
|
|
|
|
namespace blitz {
|
|
|
|
namespace client {
|
|
class Client;
|
|
} // namespace client
|
|
|
|
namespace gui {
|
|
|
|
class ServerGui : public GuiWidget {
|
|
private:
|
|
input::InputManager& m_InputManager;
|
|
|
|
public:
|
|
ServerGui(GuiWidget* parent, client::Client* client, input::InputManager& inputManager);
|
|
|
|
virtual void Render() override;
|
|
};
|
|
|
|
} // namespace gui
|
|
} // namespace blitz
|