mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 14:02:19 +00:00
15 lines
348 B
C#
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();
|
|
}
|
|
}
|