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

13 lines
No EOL
190 B
C

#ifndef TEMPEST_QUATERNION_H
#define TEMPEST_QUATERNION_H
typedef struct C4Quaternion C4Quaternion;
struct C4Quaternion {
float x;
float y;
float z;
float w;
};
#endif