mirror of
https://github.com/TheOnlyZac/sly1.git
synced 2024-11-26 23:20:43 +00:00
29 lines
398 B
C
29 lines
398 B
C
/**
|
|
* @file ui.h
|
|
*
|
|
* @brief User interface.
|
|
*/
|
|
#ifndef UI_H
|
|
#define UI_H
|
|
|
|
#include "common.h"
|
|
#include <screen.h>
|
|
|
|
/**
|
|
* @brief User interface.
|
|
*
|
|
* @note Roughly based on May proto, may be inaccurate.
|
|
*/
|
|
struct UI
|
|
{
|
|
UIS uis;
|
|
float tUis;
|
|
BLOT *apblotActive;
|
|
int cpblotActive;
|
|
UIS uisPlaying;
|
|
float rvolMusicPrepause;
|
|
float rvolEffectsPrepause;
|
|
};
|
|
|
|
#endif // UI_H
|