Files
OldThink/Content.Shared/Ghost/Roles/MakeGhostRoleEuiState.cs

17 lines
373 B
C#
Raw Normal View History

2022-05-13 00:59:03 -07:00
using Content.Shared.Eui;
2021-02-16 09:51:27 +01:00
using Robust.Shared.Serialization;
2021-06-09 22:19:39 +02:00
namespace Content.Shared.Ghost.Roles
2021-02-16 09:51:27 +01:00
{
[Serializable, NetSerializable]
public sealed class MakeGhostRoleEuiState : EuiStateBase
2021-02-16 09:51:27 +01:00
{
public MakeGhostRoleEuiState(EntityUid entityUid)
{
EntityUid = entityUid;
}
public EntityUid EntityUid { get; }
}
}