mirror of
https://github.com/thunderbrewhq/typhoon.git
synced 2025-12-12 10:32:29 +00:00
13 lines
219 B
C++
13 lines
219 B
C++
#ifndef TEMPEST_VECTOR_C_4VECTOR_HPP
|
|
#define TEMPEST_VECTOR_C_4VECTOR_HPP
|
|
|
|
class C4Vector {
|
|
public:
|
|
// Member variables
|
|
float x = 0.0f;
|
|
float y = 0.0f;
|
|
float z = 0.0f;
|
|
float w = 0.0f;
|
|
};
|
|
|
|
#endif
|