mirror of
https://github.com/HarbourMasters/Starship.git
synced 2025-02-03 00:33:55 +03:00
12 lines
179 B
C
12 lines
179 B
C
|
#ifndef SF64_MATH_H
|
||
|
#define SF64_MATH_H
|
||
|
|
||
|
#include "PR/ultratypes.h"
|
||
|
|
||
|
typedef struct {
|
||
|
/* 0x0 */ f32 x;
|
||
|
/* 0x4 */ f32 y;
|
||
|
/* 0x8 */ f32 z;
|
||
|
} Vec3f; // size = 0xC
|
||
|
|
||
|
#endif
|