Files
RemSox/UI/GUI/UIEelements/Shape.cs
T
2026-06-08 12:30:37 +02:00

12 lines
232 B
C#

using System.Drawing;
namespace RemSox.UI.GUI.UIEelements;
public abstract class Shape(string type) : UIElement(type)
{
public Color Color
{
get;
set => SetProperty(nameof(Color), ref field, value);
}
}