17 lines
361 B
C#
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; }
|
|
}
|
|
}
|