mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
26 lines
698 B
C
26 lines
698 B
C
#ifndef M_NEEDLEWORK_OVL_H
|
|
#define M_NEEDLEWORK_OVL_H
|
|
|
|
#include "types.h"
|
|
#include "m_submenu.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern u8 mNW_get_image_no(Submenu* submenu, int slot_no);
|
|
extern int mNW_check_hide_flg(Submenu* submenu, int idx);
|
|
extern void mNW_on_hide_flg(Submenu* submenu, int idx);
|
|
extern void mNW_clear_hide_flg(Submenu* submenu);
|
|
extern void mNW_draw_original(Submenu* submenu, GRAPH* graph, f32 pos_x, f32 pos_y, f32 scale, int idx, int color_flag);
|
|
|
|
extern void mNW_needlework_ovl_construct(Submenu* submenu);
|
|
extern void mNW_needlework_ovl_destruct(Submenu* submenu);
|
|
extern void mNW_needlework_ovl_set_proc(Submenu* submenu);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|