Restructed project in preparation for unit testing.

This commit is contained in:
2020-02-20 16:13:26 -05:00
parent 0e9dd4047e
commit 4e56f2d51e
34 changed files with 0 additions and 0 deletions

View File

@@ -1,27 +0,0 @@
namespace RecrownedGTK.Types
{
public class Rectangle
{
public virtual float Width {set; get;}
public virtual float Height {set; get;}
public virtual float X {set; get;}
public virtual float Y {set; get;}
public float Area {
get {
return Width * Height;
}
}
public Rectangle() {
}
public Rectangle(float x, float y, float width, float height) {
Width = width;
Height = height;
X = x;
Y = y;
}
}
}