An SDL wrapper library for .NET.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
388 B

namespace DotSDL.Graphics {
/// <summary>
/// Represents a point in 2D space.
/// </summary>
public class Point {
/// <summary>
/// The X coordinate of the point.
/// </summary>
public int X { get; set; }
/// <summary>
/// The Y coordinate of the point.
/// </summary>
public int Y { get; set; }
}
}