mirror of
https://github.com/Stone-Red-Code/RemSox.git
synced 2026-09-04 00:56:19 +02:00
12 lines
232 B
C#
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);
|
|
}
|
|
} |