mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 05:27:38 +03:00
* namespaces * Comment does not need a semicolon --------- Co-authored-by: Vasilis <vascreeper@yahoo.com> (cherry picked from commit 40b9fd4ea3b1e06558d8e510c527169965193ccc)
13 lines
315 B
C#
13 lines
315 B
C#
using Content.Shared.Roles;
|
|
|
|
namespace Content.Server.Ghost;
|
|
|
|
/// <summary>
|
|
/// This is used to mark Observers properly, as they get Minds
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class ObserverRoleComponent : BaseMindRoleComponent
|
|
{
|
|
public string Name => Loc.GetString("observer-role-name");
|
|
}
|