mirror of
https://github.com/J-D-K/JKSV.git
synced 2026-04-26 01:59:55 -05:00
21 lines
612 B
C++
21 lines
612 B
C++
#ifndef CLSUI_H
|
|
#define CLSUI_H
|
|
|
|
#include "data.h"
|
|
|
|
namespace ui
|
|
{
|
|
void clsUserPrep();
|
|
void clsTitlePrep(data::user& u);
|
|
|
|
void classicUserMenuUpdate(const uint64_t& down, const uint64_t& held, const touchPosition& p);
|
|
void classicTitleMenuUpdate(const uint64_t& down, const uint64_t& held, const touchPosition& p);
|
|
//I don't think this matched very well
|
|
void classicFolderMenuUpdate(const uint64_t& down, const uint64_t& held, const touchPosition& p);
|
|
|
|
void updateExMenu(const uint64_t& down, const uint64_t& held, const touchPosition& p);
|
|
void exMenuPrep();
|
|
}
|
|
|
|
#endif // CLSUI_H
|