Luna/libui/include/ui/Point.h

14 lines
154 B
C
Raw Normal View History

2023-08-03 10:19:45 +00:00
#pragma once
namespace ui
{
/**
* @brief A point in 2D space.
*/
struct Point
{
int x { 0 };
int y { 0 };
};
}