mirror of
https://github.com/n64decomp/mk64
synced 2026-05-24 06:50:53 -04:00
2f7719086a
* Rename a bunch of D_06XXXXXX variables Signed-off-by: Taggerung <tyler.taggerung@email.com>
19 lines
263 B
C
19 lines
263 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.
|
|
*/
|
|
|
|
// This could be *func(arg) instead.
|
|
struct CourseAddrUnkStruct {
|
|
Gfx *addr;
|
|
s32 value;
|
|
};
|
|
|
|
#endif // COURSE_H
|