mirror of
https://github.com/rvtr/TDT.git
synced 2025-10-31 13:51:07 -04:00
18 lines
315 B
C
18 lines
315 B
C
#ifndef MESSAGE_H
|
|
#define MESSAGE_H
|
|
|
|
#include <nds/ndstypes.h>
|
|
|
|
enum {
|
|
YES = true,
|
|
NO = false
|
|
};
|
|
|
|
void keyWait(u32 key);
|
|
bool choiceBox(char* message);
|
|
bool choicePrint(char* message);
|
|
bool randomConfirmBox(char* message);
|
|
void messageBox(char* message);
|
|
void messagePrint(char* message);
|
|
|
|
#endif |