14 lines
154 B
C
14 lines
154 B
C
|
#pragma once
|
||
|
|
||
|
namespace ui
|
||
|
{
|
||
|
/**
|
||
|
* @brief A point in 2D space.
|
||
|
*/
|
||
|
struct Point
|
||
|
{
|
||
|
int x { 0 };
|
||
|
int y { 0 };
|
||
|
};
|
||
|
}
|