mirror of
https://gitlab.com/ryandwyer/perfect-dark
synced 2026-08-21 05:58:42 -04:00
Restructure files
* Create chraicommands.c * Move include to src/include * Use .o files next to each .c file
This commit is contained in:
@@ -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 },
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user