blob: c9b7ebb61ffd6a1f83999154ca56f66780cc8c78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#ifndef PATH_SPAWN_METADATA_H
#define PATH_SPAWN_METADATA_H
#include "waypoints.h"
#include <common_structs.h>
#include <assets/common_data.h>
#include "include/bomb_kart.h"
typedef struct {
/* 0x00 */ u16 unk0;
/* 0x02 */ u16 unk2;
/* 0x04 */ u16 unk4;
/* 0x06 */ u16 unk6;
/* 0x08 */ u16 unk8;
/* 0x0A */ char padA[6];
} _struct_gCoursePathSizes_0x10; // size 0x10
extern TrackPathPoint nullPath;
extern s16 gAIDistances[];
extern s16 gMarioRacewayAIDistances[];
extern s32 D_800DDB20;
extern s32 D_800DDB24;
#endif
|