Files
dl/project/dl_test/ui_game.h
T
2026-09-16 14:07:40 +08:00

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;
};