mirror of
https://github.com/thunderbrewhq/typhoon.git
synced 2025-12-12 10:32:29 +00:00
feat(vector): add C4Vector
This commit is contained in:
parent
6f82ab3561
commit
1ed0cd740b
2 changed files with 14 additions and 0 deletions
|
|
@ -2,5 +2,6 @@
|
|||
#define TEMPEST_VECTOR_HPP
|
||||
|
||||
#include "tempest/vector/C3Vector.hpp"
|
||||
#include "tempest/vector/C4Vector.hpp"
|
||||
|
||||
#endif
|
||||
|
|
|
|||
13
tempest/vector/C4Vector.hpp
Normal file
13
tempest/vector/C4Vector.hpp
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
#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
|
||||
Loading…
Add table
Add a link
Reference in a new issue