22 lines
203 B
C
22 lines
203 B
C
#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
|