mirror of
https://github.com/zeldaret/mm.git
synced 2026-05-23 06:54:14 -04:00
f927730418
* All but 2 functions matched * More work on hookshot * hookshot work * 2 functions left (and one is almost done) * sp issues with draw, but matching otherwise * hookshot matching * Changed rodata inclusion for armshook * Hookshot OK * Resolve script conflicts * Rename unk variables to match MM standard * Made requested changes
21 lines
304 B
C
21 lines
304 B
C
#ifndef _Z64MATH_H_
|
|
#define _Z64MATH_H_
|
|
|
|
#include <ultra64.h>
|
|
|
|
#define SHT_MAX 32767.0f
|
|
|
|
typedef struct {
|
|
/* 0x0 */ f32 x;
|
|
/* 0x4 */ f32 y;
|
|
/* 0x8 */ f32 z;
|
|
} Vec3f; // size = 0xC
|
|
|
|
typedef struct {
|
|
/* 0x0 */ s16 x;
|
|
/* 0x2 */ s16 y;
|
|
/* 0x4 */ s16 z;
|
|
} Vec3s; // size = 0x6
|
|
|
|
#endif
|