37 lines
865 B
Plaintext
37 lines
865 B
Plaintext
/********************************************************************************
|
|
RCP_HmsXXX
|
|
[ Nob 17, 1995 ]
|
|
*********************************************************************************/
|
|
|
|
extern Gfx RCP_bane_ue[];
|
|
extern Gfx RCP_bane_naka[];
|
|
extern Gfx RCP_bane_sita[];
|
|
|
|
|
|
/********************************************************************************/
|
|
/* Hierarchy map data of BaneUe. */
|
|
/********************************************************************************/
|
|
Hierarchy RCP_HmsBaneUe[] = {
|
|
hmsHeader(500)
|
|
hmsBegin()
|
|
hmsGfx(RM_SURF, RCP_bane_ue)
|
|
hmsEnd()
|
|
hmsExit()
|
|
};
|
|
|
|
Hierarchy RCP_HmsBaneNaka[] = {
|
|
hmsHeader(500)
|
|
hmsBegin()
|
|
hmsGfx(RM_SURF, RCP_bane_naka)
|
|
hmsEnd()
|
|
hmsExit()
|
|
};
|
|
|
|
Hierarchy RCP_HmsBaneSita[] = {
|
|
hmsHeader(500)
|
|
hmsBegin()
|
|
hmsGfx(RM_SURF, RCP_bane_sita)
|
|
hmsEnd()
|
|
hmsExit()
|
|
};
|