diff options
Diffstat (limited to 'include/components/point.hpp')
-rw-r--r-- | include/components/point.hpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/components/point.hpp b/include/components/point.hpp new file mode 100644 index 0000000..b0d0f35 --- /dev/null +++ b/include/components/point.hpp @@ -0,0 +1,9 @@ +#ifndef COMPONENTS_POINT_HPP +#define COMPONENTS_POINT_HPP + +#include "vec2.hpp" + +struct Point : public Vec2 {}; + +#endif // COMPONENTS_POINT_HPP + |