mirror of
https://github.com/Stone-Red-Code/RemSox.git
synced 2026-09-04 00:56:19 +02:00
12 lines
228 B
C#
12 lines
228 B
C#
using System.Drawing;
|
|
|
|
namespace RemSox.UI.GUI.UIEelements.Shapes;
|
|
|
|
public class Line() : Shape("Line")
|
|
{
|
|
public Point EndPosition
|
|
{
|
|
get;
|
|
set => SetProperty(nameof(EndPosition), ref field, value);
|
|
}
|
|
} |