diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2024-08-05 10:33:14 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2024-08-05 10:33:14 -0400 |
commit | 66991ce9b81f4af3c095d38fa2187837d94e5469 (patch) | |
tree | f889b93e33ad346e69f070da3fa9f8af9c943393 /include/components/point.hpp | |
parent | b2eb646979b9cdcef4f9edfbcc2e2309b1f57a18 (diff) |
refactor and split into headers
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 + |