Namespace cleanup around Mind Roles (#30965)

* namespaces

* Comment does not need a semicolon

---------

Co-authored-by: Vasilis <vascreeper@yahoo.com>
This commit is contained in:
Errant
2024-08-15 20:26:57 +02:00
committed by GitHub
parent f523df821a
commit 40b9fd4ea3
14 changed files with 2356 additions and 2370 deletions

View File

@@ -1,12 +1,11 @@
using Robust.Shared.Serialization;
namespace Content.Shared.Ghost.Roles
namespace Content.Shared.Ghost.Roles;
[Serializable, NetSerializable]
public sealed class GhostRole
{
[Serializable, NetSerializable]
public sealed class GhostRole
{
public string Name { get; set; } = string.Empty;
public string Description { get; set; } = string.Empty;
public NetEntity Id;
}
public string Name { get; set; } = string.Empty;
public string Description { get; set; } = string.Empty;
public NetEntity Id;
}