mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 17:52:29 +00:00
13 lines
No EOL
190 B
C
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 |