mirror of
https://github.com/HarbourMasters/SpaghettiKart
synced 2026-05-23 06:54:37 -04:00
1aa6824d33
* Match the last 2 data files Signed-off-by: Taggerung <tyler.taggerung@email.com> * Update one of the file names based on comments Signed-off-by: Taggerung <tyler.taggerung@email.com> * Fix bad path in onomatopoeia asset file Signed-off-by: Taggerung <tyler.taggerung@email.com> --------- Signed-off-by: Taggerung <tyler.taggerung@email.com> Co-authored-by: Taggerung <tyler.taggerung@email.com>
34 lines
843 B
C
34 lines
843 B
C
#ifndef PATH_SPAWN_DATA_H
|
|
#define PATH_SPAWN_DATA_H
|
|
|
|
#include "waypoints.h"
|
|
#include "common_structs.h"
|
|
#include "common_textures.h"
|
|
#include "include/bomb_kart.h"
|
|
|
|
struct _struct_D_800DD9D0_0x10 {
|
|
/* 0x00 */ u16 unk0;
|
|
/* 0x02 */ u16 unk2;
|
|
/* 0x04 */ u16 unk4;
|
|
/* 0x06 */ u16 unk6;
|
|
/* 0x08 */ u16 unk8;
|
|
/* 0x0A */ char padA[6];
|
|
}; // size 0x10
|
|
|
|
extern UnkCommonTextureStruct0 *D_800DC720[];
|
|
extern TrackWaypoint nullPath;
|
|
extern TrackWaypoint *gCoursePathTable[][4];
|
|
extern TrackWaypoint *D_800DC8D0[][4];
|
|
extern s16 D_800DCA20[];
|
|
extern f32 D_800DCA4C[];
|
|
extern f32 D_800DCAA0[];
|
|
extern s16 D_800DCAF4[];
|
|
extern s16 D_800DCB34[];
|
|
extern s16 *D_800DCBB4[];
|
|
extern BombKartSpawn D_800DCC08[][NUM_BOMB_KARTS_MAX];
|
|
extern struct _struct_D_800DD9D0_0x10 D_800DD9D0[];
|
|
extern s32 D_800DDB20;
|
|
extern s32 D_800DDB24;
|
|
|
|
#endif
|