Restructure files

* Create chraicommands.c
* Move include to src/include
* Use .o files next to each .c file
This commit is contained in:
Ryan Dwyer
2019-10-07 17:50:26 +10:00
parent 384e0a11f3
commit 8cc9fc069c
646 changed files with 111453 additions and 111470 deletions
+39
View File
@@ -0,0 +1,39 @@
//
// Stage ID 0x4d
//
#include "stagesetup.h"
u8 intro[];
u8 props[];
struct aipaths paths[];
struct ailists functions[];
void *setup[] = {
NULL,
NULL,
NULL,
intro,
props,
paths,
functions,
NULL,
};
u8 props[] = {
endprops
};
u8 intro[] = {
outfit(OUTFIT_DEFAULT)
endintro
};
struct aipaths paths[] = {
{ NULL, 0, 0 },
};
struct ailists functions[] = {
{ NULL, 0 },
};