mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-16 07:12:27 +02:00
17 lines
361 B
C#
17 lines
361 B
C#
using System;
|
|
using Robust.Client.Graphics;
|
|
|
|
namespace Robust.Client.UserInterface.Controls
|
|
{
|
|
public abstract class UIRoot : Control
|
|
{
|
|
public override UIRoot? Root
|
|
{
|
|
get => this;
|
|
internal set => throw new InvalidOperationException();
|
|
}
|
|
|
|
public new virtual IClydeWindow? Window => null;
|
|
}
|
|
}
|