the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#pragma once
2
3class CXuiSceneBasePlayer : public CXuiSceneImpl
4{
5
6protected:
7 HRESULT OnInit( XUIMessageInit* pInitData, BOOL& bHandled );
8
9public:
10 // Define the class. The class name must match the ClassOverride property
11 // set for the scene in the UI Authoring tool.
12 XUI_IMPLEMENT_CLASS( CXuiSceneBasePlayer, L"CXuiSceneBasePlayer", XUI_CLASS_SCENE )
13};