mirror of
https://github.com/zhenyan121/Cubed.git
synced 2026-08-08 17:57:02 +08:00
16 lines
284 B
C++
16 lines
284 B
C++
#pragma once
|
|
|
|
#include "Cubed/ui/ui_manager.hpp"
|
|
namespace Cubed {
|
|
class HostGameScene;
|
|
class HostGameUI : public UIManager {
|
|
public:
|
|
HostGameUI(HostGameScene& scene);
|
|
|
|
void init() override;
|
|
void on_re_enter();
|
|
|
|
private:
|
|
HostGameScene& m_scene;
|
|
};
|
|
} // namespace Cubed
|