23 lines
296 B
C++
23 lines
296 B
C++
/**
|
|
* @file Point.h
|
|
* @author apio (cloudapio.eu)
|
|
* @brief 2D space points.
|
|
*
|
|
* @copyright Copyright (c) 2023, the Luna authors.
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace ui
|
|
{
|
|
/**
|
|
* @brief A point in 2D space.
|
|
*/
|
|
struct Point
|
|
{
|
|
int x { 0 };
|
|
int y { 0 };
|
|
};
|
|
}
|