Files
tbd-station-14/Content.Shared/Ghost/Roles/MakeGhostRoleEuiState.cs
2023-09-11 14:31:45 +10:00

17 lines
361 B
C#

using Content.Shared.Eui;
using Robust.Shared.Serialization;
namespace Content.Shared.Ghost.Roles
{
[Serializable, NetSerializable]
public sealed class MakeGhostRoleEuiState : EuiStateBase
{
public MakeGhostRoleEuiState(NetEntity entity)
{
Entity = entity;
}
public NetEntity Entity { get; }
}
}