Files
tbd-station-14/Content.Shared/Ghost/Roles/MakeGhostRoleEuiState.cs
2022-02-16 18:23:23 +11:00

19 lines
420 B
C#

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