Document script_movement

This commit is contained in:
GriffinR
2019-09-15 15:30:35 -04:00
committed by huderlem
parent 6c9997a906
commit f9a8f44a29
7 changed files with 99 additions and 96 deletions

View File

@@ -5,6 +5,7 @@
#define TAIL_SENTINEL 0xFF
#define NUM_TASKS 16
#define NUM_TASK_DATA 16
typedef void (*TaskFunc)(u8 taskId);
@@ -15,7 +16,7 @@ struct Task
u8 prev;
u8 next;
u8 priority;
s16 data[16];
s16 data[NUM_TASK_DATA];
};
extern struct Task gTasks[];