mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 05:59:03 +03:00
* Fix objects tab not showing nents * Fix everything (cherry picked from commit 11701215322efe6e03c84a99645e60c766f0e2bb)
20 lines
520 B
C#
20 lines
520 B
C#
using Robust.Client.AutoGenerated;
|
|
using Robust.Client.UserInterface.Controls;
|
|
using Robust.Client.UserInterface.XAML;
|
|
|
|
namespace Content.Client.Administration.UI.Tabs.ObjectsTab;
|
|
|
|
[GenerateTypedNameReferences]
|
|
public sealed partial class ObjectsTabEntry : ContainerButton
|
|
{
|
|
public NetEntity AssocEntity;
|
|
|
|
public ObjectsTabEntry(string name, NetEntity nent)
|
|
{
|
|
RobustXamlLoader.Load(this);
|
|
AssocEntity = nent;
|
|
EIDLabel.Text = nent.ToString();
|
|
NameLabel.Text = name;
|
|
}
|
|
}
|