summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorLagoLunatic <LagoLunatic@users.noreply.github.com>2026-07-23 22:07:02 -0400
committerLagoLunatic <LagoLunatic@users.noreply.github.com>2026-07-23 22:07:02 -0400
commitaf1c8e261e402c7ce879ea541c8dbe794f177483 (patch)
tree8d5bb75e49886fd304b1412fdb7ae15f16d08eb5 /include
parent4efda6f35537a2d546841d1eb9579563bb581ab8 (diff)
Add enum for pearls/symbols
Diffstat (limited to 'include')
-rw-r--r--include/d/d_com_inf_game.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/d/d_com_inf_game.h b/include/d/d_com_inf_game.h
index f0e1bf59..fd99d3cd 100644
--- a/include/d/d_com_inf_game.h
+++ b/include/d/d_com_inf_game.h
@@ -1657,6 +1657,13 @@ inline void dComIfGs_onTriforce(u8 i_no) {
g_dComIfG_gameInfo.save.getPlayer().getCollect().onTriforce(i_no);
}
+// Goddess pearls (aka "god symbols").
+enum dSymbolIndex_e {
+ /* 0x0 */ dSymbol_NAYRU_e,
+ /* 0x1 */ dSymbol_DIN_e,
+ /* 0x2 */ dSymbol_FARORE_e,
+};
+
inline BOOL dComIfGs_isSymbol(u8 i_no) {
return g_dComIfG_gameInfo.save.getPlayer().getCollect().isSymbol(i_no);
}