binana/3.3.5a/include/tempest/quaternion.h

13 lines
166 B
C
Raw Normal View History

#ifndef TEMPEST_QUATERNION_H
#define TEMPEST_QUATERNION_H
DECLARE_STRUCT(C4Quaternion);
struct C4Quaternion {
float x;
float y;
float z;
float w;
};
2024-07-07 03:00:06 -04:00
#endif