mirror of
https://github.com/n64decomp/mk64
synced 2026-05-23 22:45:21 -04:00
17a6f4bb3d
* update clang and add action * try clang on course folder only * forget two file * Update course_displaylists.inc.c * forget few other file * Update course_vertices.inc.c * format all code while get it match * second pass * format other dir * disable clang format on bad ido code * fix some tabulation * revert format on tool dir * Update clang-format.yml * ignore gbi.h * add some read me instruction * fix error * format and fixing error * Update README.md --------- Co-authored-by: MegaMech <MegaMech@users.noreply.github.com>
20 lines
267 B
C
20 lines
267 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
|