I trust this

This commit is contained in:
Fazana
2022-05-02 12:41:29 +01:00
parent 9ff65880bb
commit 5cf19c00b2
12 changed files with 40 additions and 83 deletions
+4 -1
View File
@@ -6,7 +6,9 @@
typedef enum Vehicle {
VEHICLE_CAR,
VEHICLE_HOVERCRAFT,
VEHICLE_PLANE
VEHICLE_PLANE,
NUMBER_OF_VEHICLE_TYPES
} Vehicle;
typedef enum Language {
@@ -33,6 +35,7 @@ typedef enum RaceType {
RACETYPE_CUTSCENE_1 = 6, // Not sure what the difference between these two are.
RACETYPE_CUTSCENE_2 = 7,
RACETYPE_BOSS = 8,
RACETYPE_CHALLENGE = 64, // For masking
RACETYPE_CHALLENGE_BATTLE = 64,
RACETYPE_CHALLENGE_BANANAS = 65,
RACETYPE_CHALLENGE_EGGS = 66
+1
View File
@@ -4,6 +4,7 @@
/* Note: Structs are not complete, take them with a grain of salt. */
#include "types.h"
#include "enums.h"
/* Size: 0x20 bytes */
typedef struct MenuElement {