MakeGhostRoleEuiState.cs 361 B

12345678910111213141516
  1. using Content.Shared.Eui;
  2. using Robust.Shared.Serialization;
  3. namespace Content.Shared.Ghost.Roles
  4. {
  5. [Serializable, NetSerializable]
  6. public sealed class MakeGhostRoleEuiState : EuiStateBase
  7. {
  8. public MakeGhostRoleEuiState(NetEntity entity)
  9. {
  10. Entity = entity;
  11. }
  12. public NetEntity Entity { get; }
  13. }
  14. }