Files
RobustToolbox/SS14.Client/UserInterface/Controls/ScrollContainer.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
529 B
C#

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