16 lines
209 B
C++
16 lines
209 B
C++
#pragma once
|
|
|
|
#include "head.h"
|
|
|
|
class UIGame : public UI::Scene
|
|
{
|
|
public:
|
|
UIGame();
|
|
|
|
virtual void Update() override;
|
|
private:
|
|
std::vector<std::string> _allGame;
|
|
|
|
UI::ListBox* _edt;
|
|
UI::Text* _txtInfo;
|
|
}; |