mirror of
https://github.com/thunderbrewhq/typhoon.git
synced 2025-12-12 02:22:30 +00:00
12 lines
179 B
C++
12 lines
179 B
C++
|
|
#ifndef TEMPEST_VECTOR_C_2VECTOR_HPP
|
||
|
|
#define TEMPEST_VECTOR_C_2VECTOR_HPP
|
||
|
|
|
||
|
|
class C2Vector {
|
||
|
|
public:
|
||
|
|
// Member variables
|
||
|
|
float x = 0.0f;
|
||
|
|
float y = 0.0f;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|