Files
RobustToolbox/Robust.Client/UserInterface/Controls/UIWidget.cs
T
TayrtahnandGitHub d2792926e5 Remove [Virtual] attributes from abstract/sealed classes (#6482)
Removed [Virtual] attributes that shouldn't be there
2026-03-24 23:41:58 -04:00

12 lines
210 B
C#

using Robust.Shared.IoC;
namespace Robust.Client.UserInterface.Controls;
public abstract class UIWidget : BoxContainer
{
protected UIWidget()
{
IoCManager.InjectDependencies(this);
}
}