Files
RemSox/UI/GUI/UIEelements/UIEelement.cs
T
2026-06-08 21:30:40 +02:00

18 lines
352 B
C#

using RemSox.Utils;
using System.Drawing;
namespace RemSox.UI.GUI.UIEelements;
public abstract class UIElement(string type) : ChangedPropertiesTracker
{
public int Id { get; init; }
public string Type { get; set; } = type;
public Point Position
{
get;
set => SetProperty(nameof(Position), ref field, value);
}
}