//#define COSMOSDEBUG namespace Cosmos.System.Graphics { /// /// Point class. /// public struct Point { /// /// Create new instance of class. /// /// x coordinate. /// y coordinate. public Point(int x, int y) { X = x; Y = y; } /// /// Get and set x coordinate. /// public int X { get; set; } /// /// Get and set y coordinate. /// public int Y { get; set; } } }