Cosmos/source2/Users/Orvid/Orvid.Graphics/Shapes/Shape.cs

15 lines
348 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Orvid.Graphics.Shapes
{
public abstract class Shape
{
public Int32 X { get; set; }
public Int32 Y { get; set; }
public bool Modified { get; internal set; }
public abstract void Draw();
}
}