star_select.h (626B)
1 #ifndef STAR_SELECT_H 2 #define STAR_SELECT_H 3 4 #include <PR/ultratypes.h> 5 #include <PR/gbi.h> 6 7 #include "types.h" 8 9 enum StarSelectorTypes { 10 STAR_SELECTOR_NOT_SELECTED, 11 STAR_SELECTOR_SELECTED, 12 STAR_SELECTOR_100_COINS 13 }; 14 15 #ifdef AVOID_UB 16 Gfx *geo_act_selector_strings(s16 callContext, UNUSED struct GraphNode *node, UNUSED void *context); 17 #else 18 Gfx *geo_act_selector_strings(s16 callContext, UNUSED struct GraphNode *node); 19 #endif 20 s32 lvl_init_act_selector_values_and_stars(UNUSED s32 arg, UNUSED s32 unused); 21 s32 lvl_update_obj_and_load_act_button_actions(UNUSED s32 arg, UNUSED s32 unused); 22 23 #endif // STAR_SELECT_H