2016-02-18 21:16:05 -08:00

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;
}