Delete more body code (#15259)

This commit is contained in:
Kara
2023-04-10 23:28:10 -07:00
committed by GitHub
parent 64089f9c5d
commit 3bb2b27169
5 changed files with 0 additions and 308 deletions

View File

@@ -1,25 +0,0 @@
using Robust.Shared.Serialization;
namespace Content.Shared.Body.Components
{
public abstract class SharedBodyScannerComponent : Component
{
}
[Serializable, NetSerializable]
public enum BodyScannerUiKey
{
Key
}
[Serializable, NetSerializable]
public sealed class BodyScannerUIState : BoundUserInterfaceState
{
public readonly EntityUid Uid;
public BodyScannerUIState(EntityUid uid)
{
Uid = uid;
}
}
}