You've already forked HackerSM64
mirror of
https://github.com/HackerN64/HackerSM64.git
synced 2026-01-21 10:35:32 -08:00
20 lines
518 B
C
20 lines
518 B
C
#ifndef STAR_SELECT_H
|
|
#define STAR_SELECT_H
|
|
|
|
#include <PR/ultratypes.h>
|
|
#include <PR/gbi.h>
|
|
|
|
#include "types.h"
|
|
|
|
enum StarSelectorTypes {
|
|
STAR_SELECTOR_NOT_SELECTED,
|
|
STAR_SELECTOR_SELECTED,
|
|
STAR_SELECTOR_100_COINS
|
|
};
|
|
|
|
Gfx *geo_act_selector_strings(s16 callContext, UNUSED struct GraphNode *node, UNUSED void *context);
|
|
s32 lvl_init_act_selector_values_and_stars(UNUSED s32 arg, UNUSED s32 unused);
|
|
s32 lvl_update_obj_and_load_act_button_actions(UNUSED s32 arg, UNUSED s32 unused);
|
|
|
|
#endif // STAR_SELECT_H
|