BuGUI
BUtton Grid User Interface
Loading...
Searching...
No Matches
point.hpp
1#pragma once
2#include <compare>
3
4namespace bugui
5{
10struct point final
11{
12 int x{0};
13 int y{0};
14
15 auto operator<=> (const point&) const = default;
16};
17
18} // namespace bugui
Provides the basics of 2D geometry. Primarily used as the top left and bottom right corners of the re...
Definition point.hpp:11