mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 01:42:29 +00:00
13 lines
No EOL
166 B
C
13 lines
No EOL
166 B
C
#ifndef TEMPEST_QUATERNION_H
|
|
#define TEMPEST_QUATERNION_H
|
|
|
|
DECLARE_STRUCT(C4Quaternion);
|
|
|
|
struct C4Quaternion {
|
|
float x;
|
|
float y;
|
|
float z;
|
|
float w;
|
|
};
|
|
|
|
#endif |