blob: 0abc081f5beff2ed974ec7df72de093c8188ada0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef COMPONENTS_POINT_HPP
#define COMPONENTS_POINT_HPP
#include "vec2.hpp"
struct Point : public Vec2 {
constexpr Point() = default;
constexpr Point(float x_, float y_): Vec2(x_, y_) {}
Point(std::tuple<float, float> tup): Vec2(tup) {}
};
#endif // COMPONENTS_POINT_HPP
|