Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
MorsGames
GitHub Repository: MorsGames/sm64plus
Path: blob/master/src/menu/star_select.h
7857 views
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
{
11
STAR_SELECTOR_NOT_SELECTED,
12
STAR_SELECTOR_SELECTED,
13
STAR_SELECTOR_100_COINS
14
};
15
16
#ifdef AVOID_UB
17
Gfx *geo_act_selector_strings(s16 callContext, UNUSED struct GraphNode *node, UNUSED void *context);
18
#else
19
Gfx *geo_act_selector_strings(s16 callContext, UNUSED struct GraphNode *node);
20
#endif
21
s32 lvl_init_act_selector_values_and_stars(UNUSED s32 arg, UNUSED s32 unused);
22
s32 lvl_update_obj_and_load_act_button_actions(UNUSED s32 arg, UNUSED s32 unused);
23
24
#endif // STAR_SELECT_H
25
26