mirror of
https://gitlab.com/Theopse/fbi-i18n-zh.git
synced 2025-04-06 03:58:02 +08:00
13 lines
158 B
C
13 lines
158 B
C
#include <3ds.h>
|
|
|
|
#include "task.h"
|
|
|
|
static bool task_quit;
|
|
|
|
bool task_is_quit_all() {
|
|
return task_quit;
|
|
}
|
|
|
|
void task_quit_all() {
|
|
task_quit = true;
|
|
} |