forked from ACreTeam/ac-decomp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathac_ev_santa.h
41 lines (31 loc) · 886 Bytes
/
ac_ev_santa.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#ifndef AC_EV_SANTA_H
#define AC_EV_SANTA_H
#include "types.h"
#include "m_actor.h"
#include "ac_npc.h"
#include "m_event.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct event_santa_s EVENT_SANTA_ACTOR;
typedef struct santa_talk_data_s {
int msg_no;
int talk_act;
} aESNT_talk_data_c;
typedef void(*aESNT_TALK_PROC)(EVENT_SANTA_ACTOR*, GAME_PLAY*);
typedef void (*aESNT_SETUP_TALK_PROC)(EVENT_SANTA_ACTOR*, GAME_PLAY*, int);
struct event_santa_s {
/* 0x000 */ NPC_ACTOR npc_class;
/* 0x994 */ int talk_act;
/* 0x998 */ aESNT_TALK_PROC talk_proc;
/* 0x99C */ aESNT_SETUP_TALK_PROC setup_talk_proc;
/* 0x9A0 */ mActor_name_t present;
/* 0x9A4 */ aESNT_talk_data_c* talk_data_p;
/* 0x9A8 */ mEv_santa_event_c* event_p;
/* 0x9AC */ mEv_santa_event_common_c* event_common_p;
};
extern ACTOR_PROFILE Ev_Santa_Profile;
#ifdef __cplusplus
}
#endif
#endif