lots of updates
This commit is contained in:
21
public/trig.h
Normal file
21
public/trig.h
Normal 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
|
||||
Reference in New Issue
Block a user