Files
CMLeonOS/Gui/UILib/Control.cs

15 lines
329 B
C#
Raw Normal View History

2026-03-01 17:03:49 +08:00
namespace CMLeonOS.Gui.UILib
{
internal abstract class Control : Window
{
internal Control(Window parent, int x, int y, int width, int height) : base(parent.Process, x, y, width, height)
{
RelativeTo = parent;
Render();
}
internal abstract void Render();
}
}