mirror of
https://github.com/HarbourMasters/SpaghettiKart
synced 2026-05-23 15:02:12 -04:00
6e3f6aee63
* Matched code
20 lines
266 B
C
20 lines
266 B
C
#ifndef COURSE_H
|
|
#define COURSE_H
|
|
|
|
#include <ultra64.h>
|
|
#include <PR/gbi.h>
|
|
#include <macros.h>
|
|
|
|
/**
|
|
* @file Include for course gfx.inc.c.
|
|
*/
|
|
|
|
typedef struct {
|
|
Gfx *addr;
|
|
u8 surfaceType;
|
|
u8 sectionId;
|
|
u16 flags;
|
|
} TrackSections;
|
|
|
|
#endif // COURSE_H
|