mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-02 18:17:09 +02:00
12 lines
210 B
C#
12 lines
210 B
C#
using Robust.Shared.IoC;
|
|
|
|
namespace Robust.Client.UserInterface.Controls;
|
|
|
|
public abstract class UIWidget : BoxContainer
|
|
{
|
|
protected UIWidget()
|
|
{
|
|
IoCManager.InjectDependencies(this);
|
|
}
|
|
}
|