40 lines
391 B
C
40 lines
391 B
C
//
|
|
// Stage ID 0x18
|
|
//
|
|
|
|
#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 },
|
|
};
|
|
|