Cosmos/source/Cosmos.System2/Graphics/Point.cs
fanoI 376c0d2db6 Changed some classes of CGS to be struct as they should have been from the beginnning.
- Mode and Point are now structures
- The copy of System.Drawing.Color is not needed anymore the real System.DrawingColor is used instead
- Updated CGS Test Kernel
- Made SVGAII a little more faster (but this not the complete solution)
2018-05-13 20:17:20 +02:00

29 lines
456 B
C#

//#define COSMOSDEBUG
namespace Cosmos.System.Graphics
{
public struct Point
{
public Point(int x, int y)
{
this.x = x;
this.y = y;
}
private int x;
public int X
{
get { return x; }
set { x = value; }
}
private int y;
public int Y
{
get { return y; }
set { y = value; }
}
}
}