remove pokeball.s

This commit is contained in:
Evan
2019-11-27 07:14:33 -07:00
parent 4b33546727
commit cba5ebbd5a
5 changed files with 1307 additions and 2911 deletions
+7 -7
View File
@@ -10,13 +10,13 @@ typedef void (*TaskFunc)(u8 taskId);
struct Task
{
TaskFunc func;
bool8 isActive;
u8 prev;
u8 next;
u8 priority;
s16 data[16];
};
/*0x00*/ TaskFunc func;
/*0x04*/ bool8 isActive;
/*0x05*/ u8 prev;
/*0x06*/ u8 next;
/*0x07*/ u8 priority;
/*0x08*/ s16 data[16]; //8, a, c, e, 10, 12, 14, 16, 18, 1a, 1c, 1e, 20, 22, 24, 26
}; /*size = 0x28*/
extern struct Task gTasks[];