mirror of
https://gitlab.com/ryandwyer/perfect-dark
synced 2026-05-24 07:10:39 -04:00
8cc9fc069c
* Create chraicommands.c * Move include to src/include * Use .o files next to each .c file
41 lines
420 B
C
41 lines
420 B
C
//
|
|
// Temple (MP)
|
|
//
|
|
|
|
#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)
|
|
intro_weapon(WEAPON_NONE, -1)
|
|
endintro
|
|
};
|
|
|
|
struct aipaths paths[] = {
|
|
{ NULL, 0, 0 },
|
|
};
|
|
|
|
struct ailists functions[] = {
|
|
{ NULL, 0 },
|
|
};
|
|
|