Files
RobustToolbox/SS14.Client/UserInterface/Controls/Container.cs
Pieter-Jan Briers dbc88e253b Allow client to run headlessly. (#727)
AKA Without Godot.

Still links against GodotSharp, but this does mean that you can run headless or not from the same binary.
2019-01-19 18:23:41 +01:00

24 lines
503 B
C#

namespace SS14.Client.UserInterface.Controls
{
[ControlWrap(typeof(Godot.Container))]
public class Container : Control
{
public Container() : base()
{
}
public Container(string name) : base(name)
{
}
internal Container(Godot.Container sceneControl) : base(sceneControl)
{
}
private protected override Godot.Control SpawnSceneControl()
{
return new Godot.Container();
}
}
}