You've already forked SpaghettiKart
mirror of
https://github.com/izzy2lost/SpaghettiKart.git
synced 2026-03-26 16:57:37 -07:00
475f167bb2
* Implement kart vehicle * Fix menu CC * Actors * variable framerate * Implement Actors vector * Fix water & scrolling textures * Finish ACoin * Refactor finishline * Refactor mtx to vector * Fix refactored screen code bugs * Fix playlist bug * Switching courses working now * Fix podium ceremony * Mostly Fix Demo and Credits * Credits Load Actors and Textures * Fix credits * Formatting * Update lus and torch * Fix water features * Fix crabs * Combine function * Fix wheels * Add Moon Jump Cheat * Wheel Change * Fix smoke due to wheel change * Fix screens for wheels * Fix transparency * Fix staff ghost * Fix lakitu transition widescreen * Rename and export credits text * Fixes --------- Co-authored-by: MegaMech <7255464+MegaMech@users.noreply.github.com>
26 lines
666 B
C
26 lines
666 B
C
#include <libultraship.h>
|
|
#include <macros.h>
|
|
#include <common_structs.h>
|
|
#include "staff_ghost_data.h"
|
|
|
|
/*
|
|
* This file is required for data alignment
|
|
*
|
|
*/
|
|
|
|
StaffGhost d_mario_raceway_staff_ghost[] = {
|
|
#include "courses/mario_raceway/staff_ghost.inc.c"
|
|
};
|
|
|
|
StaffGhost d_luigi_raceway_staff_ghost[] = {
|
|
#include "courses/luigi_raceway/staff_ghost.inc.c"
|
|
};
|
|
|
|
StaffGhost d_royal_raceway_staff_ghost[] = {
|
|
#include "courses/royal_raceway/staff_ghost.inc.c"
|
|
};
|
|
|
|
// Unknown data. Perhaps colour or lights
|
|
s32 D_0F4FCAD0[] = { 0x00000000, 0xc8c8c8c8, 0xc8c80000, 0x00007b39, 0x6f6f6f6f,
|
|
0x6f6f6f6f, 0x3f7b0000, 0x0000c8c8, 0xc8c8c8c8, 0xc8000000 };
|