23 lines
358 B
C++
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)
|
|
|
|
};
|
|
}
|