- add: change genitals on appearance

This commit is contained in:
2024-02-16 13:22:43 +03:00
parent c9396e7b5a
commit 52628d0393
26 changed files with 5060 additions and 133 deletions

View File

@@ -0,0 +1,25 @@
using Robust.Client.AutoGenerated;
using Robust.Client.UserInterface;
using Robust.Client.UserInterface.XAML;
namespace Content.Client._Amour.HumanoidProfileEditorExt;
[GenerateTypedNameReferences]
public sealed partial class GenitalBoxView : Control
{
public GenitalBoxView()
{
RobustXamlLoader.Load(this);
}
public void AddChild(Control control)
{
Container.AddChild(control);
}
public void ClearChilds()
{
Container.RemoveAllChildren();
}
}