From a6ac85c3eaff90c0ff0400312f43bec8188b9833 Mon Sep 17 00:00:00 2001 From: mrb0nk500 Date: Fri, 3 Mar 2023 20:06:19 -0400 Subject: TMath: Add `TMath` --- context.h | 6 ++++++ include/pso/TMath.h | 14 ++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 include/pso/TMath.h diff --git a/context.h b/context.h index 3ef2a01..cdfe79f 100644 --- a/context.h +++ b/context.h @@ -556,6 +556,12 @@ struct packet_header { void bswap(); } __packed__; +// pso/TMath.h +struct vec2f { + float x; + float y; +}; + // pso/TPlyGuildCardTag.h struct gc_tag { u8 tag0; diff --git a/include/pso/TMath.h b/include/pso/TMath.h new file mode 100644 index 0000000..799c498 --- /dev/null +++ b/include/pso/TMath.h @@ -0,0 +1,14 @@ +#ifndef TMATH_H +#define TMATH_H + +#include +#include +#include +#include + +struct vec2f { + float x; + float y; +}; + +#endif -- cgit v1.2.3-13-gbd6f