mirror of
https://github.com/Stone-Red-Code/RemSox.git
synced 2026-09-04 09:06:23 +02:00
10 lines
197 B
C#
10 lines
197 B
C#
namespace RemSox.UI.GUI.UIEelements.Shapes;
|
|
|
|
public class Circle() : Shape("Circle")
|
|
{
|
|
public int Radius
|
|
{
|
|
get;
|
|
set => SetProperty(nameof(Radius), ref field, value);
|
|
}
|
|
} |