6
StarHorizon_Public/Content.Shared/Ghost/Roles/MakeGhostRoleEuiState.cs
2025-11-15 12:24:44 +03: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; }
}
}