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

13 lines
190 B
C
Raw Normal View History

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