mirror of
https://github.com/Stone-Red-Code/RemSox.git
synced 2026-09-04 17:16:24 +02:00
19 lines
414 B
C#
19 lines
414 B
C#
namespace RemSox.UI.GUI.UIEelements;
|
|
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Drawing;
|
|
using RemSox.Utils;
|
|
|
|
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);
|
|
}
|
|
} |