mirror of
https://github.com/izzy2lost/Diddy-Kong-Racing.git
synced 2026-06-19 01:16:26 -07:00
* Massive libultra changes * Fix the build! * Remove crc comment that seemd to break the score script for some reason. * Update README score. * Apply some suggestions * rename sins and coss funcs.
19 lines
284 B
C
19 lines
284 B
C
#ifndef _TYPES_H_
|
|
#define _TYPES_H_
|
|
|
|
#include <PR/ultratypes.h>
|
|
|
|
typedef float Matrix[4][4];
|
|
typedef s32 MatrixS[4][4];
|
|
typedef s16 VertexList;
|
|
typedef u8 TriangleList;
|
|
typedef u32 uintptr_t;
|
|
|
|
#if defined(__sgi)
|
|
#define stubbed_printf
|
|
#else
|
|
#define stubbed_printf(...)
|
|
#endif
|
|
|
|
#endif
|