mirror of
https://github.com/RocketRobz/SuperAllStarPhotoStudio.git
synced 2025-06-18 17:15:35 -04:00
18 lines
411 B
C
18 lines
411 B
C
#ifndef SCREEN_VARS_H
|
|
#define SCREEN_VARS_H
|
|
|
|
// List all common screen variables here.
|
|
extern u8 sysRegion;
|
|
extern bool showCursor;
|
|
extern int cursorAlpha;
|
|
extern int studioBg;
|
|
extern bool cinemaWide;
|
|
extern int iFps;
|
|
|
|
// List all common screen functions here.
|
|
extern void sndBack(void);
|
|
extern void sndSelect(void);
|
|
extern void sndHighlight(void);
|
|
extern bool touchingBackButton(void);
|
|
|
|
#endif // SCREEN_VARS_H
|