lots of updates

This commit is contained in:
2026-02-19 00:39:20 +02:00
parent 898bf90504
commit 4dd2e13c48
53 changed files with 1495 additions and 250 deletions

21
public/trig.h Normal file
View File

@@ -0,0 +1,21 @@
#ifndef TRIG_H
#define TRIG_H
struct Vector {
float x;
float y;
float z;
};
struct QAngle {
float pitch;
float yaw;
float roll;
};
struct Quat {
float x;
float y;
float z;
float w;
};
#endif