mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-26 18:17:12 +03:00
19 lines
420 B
C#
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; }
|
|
}
|
|
}
|