Files
CraftyBoss 856154edb0 updated includes
added in new headers from my efforts decompiling odyssey. also edited some existing headers with new info.
2021-10-17 23:57:17 -07:00

16 lines
379 B
C++

#include <string>
#include <cstring>
#include "sead/math/seadVector.h"
#include "sead/math/seadQuat.h"
#include "types.h"
bool isPartOf(char* w1, char* w2);
int indexOf(char *w1, char c1);
sead::Vector3f QuatToEuler(sead::Quatf *quat);
#define RAD(deg) (deg * (M_PI / 180)) // converts Degrees to Radians
#define DEG(rad) (rad * (180 / M_PI)) // converts Radians to Degrees