fix(core): change hole constants to static class

This commit is contained in:
2022-12-23 16:33:10 +03:00
parent f8424a70ca
commit 26b4746f41
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -77,13 +77,13 @@ typedef struct shoppyou {
#define HOLE_ID (-1)
// Hole sasa constant
const Sasa HOLE_SASA = {HOLE_ID};
static const Sasa HOLE_SASA = {HOLE_ID};
// Hole tanzaku constant
const Tanzaku HOLE_TANZAKU = {HOLE_ID};
static const Tanzaku HOLE_TANZAKU = {HOLE_ID};
// Hole kazari constant
const Kazari HOLE_KAZARI = {HOLE_ID};
static const Kazari HOLE_KAZARI = {HOLE_ID};
// ==================== SASAHYOU SECTION ==================== //