mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-09 00:00:44 +00:00
pr updates
This commit is contained in:
parent
495582cc94
commit
3ab1af0c24
1013 changed files with 17685 additions and 17681 deletions
22
include/z64vec.h
Normal file
22
include/z64vec.h
Normal file
|
@ -0,0 +1,22 @@
|
|||
#ifndef _Z64VEC_H_
|
||||
#define _Z64VEC_H_
|
||||
|
||||
#include <ultra64.h>
|
||||
|
||||
typedef struct {
|
||||
f32 x, y;
|
||||
} Vec2f;
|
||||
|
||||
typedef struct {
|
||||
f32 x, y, z;
|
||||
} Vec3f;
|
||||
|
||||
typedef struct {
|
||||
s16 x, y, z;
|
||||
} Vec3s;
|
||||
|
||||
typedef struct {
|
||||
s32 x, y, z;
|
||||
} Vec3i;
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue