Paper Mario DX
Paper Mario (N64) modding
 
Loading...
Searching...
No Matches
msg_api.h
Go to the documentation of this file.
1#ifndef _EVT_MSG_API_H_
2#define _EVT_MSG_API_H_
3
4#include "script_api/macros.h"
5
6#define SpeakToPlayer(ARGS...) \
7 _EVT_CMD(EVT_OP_CALL, evt_SpeakToPlayer, ##ARGS),
8API_CALLABLE(evt_SpeakToPlayer);
9
10#define EndSpeech(ARGS...) \
11 _EVT_CMD(EVT_OP_CALL, evt_EndSpeech, ##ARGS),
12API_CALLABLE(evt_EndSpeech);
13
14#define ContinueSpeech(ARGS...) \
15 _EVT_CMD(EVT_OP_CALL, evt_ContinueSpeech, ##ARGS),
16API_CALLABLE(evt_ContinueSpeech);
17
18#define SpeakToNpc(ARGS...) \
19 _EVT_CMD(EVT_OP_CALL, evt_SpeakToNpc, ##ARGS),
20API_CALLABLE(evt_SpeakToNpc);
21
22#endif