mirror of
https://github.com/J-D-K/JKSV.git
synced 2026-04-26 01:59:55 -05:00
16 lines
352 B
C++
16 lines
352 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);
|
|
}
|
|
|
|
#endif // CLSUI_H
|