binana/profile/3.3.5a-windows-386/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;
};
#endif