Implement & link m_mark_room.c

This commit is contained in:
Cuyler36
2023-10-11 18:03:20 -04:00
parent 007aec9767
commit dfde99aa63
5 changed files with 203 additions and 3 deletions
+2
View File
@@ -53,6 +53,8 @@ enum {
mMl_TYPE_SHOP_SALE_LEAFLET = 2,
mMl_TYPE_BROKER_SALE_LEAFLET = 3,
mMl_TYPE_HRA = 6,
mMl_TYPE_FISHING_CONTENST = 9,
mMl_TYPE_12 = 12
+4
View File
@@ -3,11 +3,15 @@
#include "types.h"
#include "game_h.h"
#include "m_mark_room_ovl.h"
#ifdef __cplusplus
extern "C" {
#endif
#define mMkRm_HINT_NUM 19
extern void mMkRm_ReportChangePlayerRoom();
extern void mMkRm_MarkRoom(GAME* game);
#ifdef __cplusplus
+16
View File
@@ -0,0 +1,16 @@
#ifndef M_MARK_ROOM_OVL_H
#define M_MARK_ROOM_OVL_H
#include "types.h"
#ifdef __cplusplus
extern "C" {
#endif
extern int mMkRm_MarkRoomOvl(int player_no);
#ifdef __cplusplus
}
#endif
#endif