mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-02 18:17:09 +02:00
17 lines
394 B
C#
17 lines
394 B
C#
using Robust.Client.Graphics;
|
|
|
|
namespace Robust.Client.UserInterface.Controls
|
|
{
|
|
public sealed class WindowRoot : UIRoot
|
|
{
|
|
internal WindowRoot(IClydeWindow window)
|
|
{
|
|
Window = window;
|
|
}
|
|
|
|
public override float UIScale => UIScaleSet;
|
|
internal float UIScaleSet { get; set; }
|
|
public override IClydeWindow Window { get; }
|
|
}
|
|
}
|