Files
NXST/include/UsersLayout.hpp
2024-07-14 20:20:03 +03:00

23 lines
358 B
C++

#include <pu/Plutonium>
#include <const.h>
namespace ui {
class UsersLayout : public pu::ui::Layout {
private:
pu::ui::elm::Menu::Ref usersMenu;
public:
UsersLayout();
void onInput(u64 Down, u64 Up, u64 Held, pu::ui::TouchPoint Pos);
int32_t GetCurrentIndex();
PU_SMART_CTOR(UsersLayout)
};
}