mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-05-16 23:11:19 +00:00
10 lines
144 B
C
10 lines
144 B
C
#ifndef _DOLPHIN_MTX
|
|
#define _DOLPHIN_MTX
|
|
|
|
#include <dolphin/types.h>
|
|
|
|
typedef f32 Mtx[3][4];
|
|
typedef f32 (*MtxPtr)[4];
|
|
|
|
#endif // _DOLPHIN_MTX
|