mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
24 lines
552 B
C
24 lines
552 B
C
#ifndef AC_QUEST_TALK_GREETING_H
|
|
#define AC_QUEST_TALK_GREETING_H
|
|
|
|
#include "types.h"
|
|
#include "ac_quest_manager.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define aQMgr_GREETING_GAME_TYPE_MONEY (1 << 0)
|
|
#define aQMgr_GREETING_GAME_TYPE_ITEM (1 << 1)
|
|
#define aQMgr_GREETING_GAME_TYPE_ALL (aQMgr_GREETING_GAME_TYPE_MONEY | aQMgr_GREETING_GAME_TYPE_ITEM)
|
|
|
|
#define aQMgr_GREETING_GAME_BELL_MIN 3000
|
|
|
|
extern int aQMgr_get_hello_msg_no(ACTOR* client, aQMgr_GET_TIME_KIND_PROC time_proc, mActor_name_t give_item);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|