49 lines
492 B
C
49 lines
492 B
C
//
|
|
// Deep Sea
|
|
//
|
|
|
|
#include "../include/setup.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[] = {
|
|
intro_weapon(WEAPON_UNARMED, -1)
|
|
outfit(OUTFIT_DEFAULT)
|
|
endintro
|
|
};
|
|
|
|
s32 path00[] = {
|
|
-1,
|
|
};
|
|
|
|
struct aipaths paths[] = {
|
|
{ NULL, 0, 0 },
|
|
};
|
|
|
|
u8 func0000_004c[] = {
|
|
endfunction
|
|
};
|
|
|
|
struct ailists functions[] = {
|
|
{ NULL, 0 },
|
|
};
|
|
|