Files
RobustToolbox/Robust.Client/UserInterface/Controls/UIRoot.cs
T

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;
}
}