2024-08-15 20:26:57 +02:00
|
|
|
|
namespace Content.Server.Ghost;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// This is used to mark Observers properly, as they get Minds
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[RegisterComponent]
|
|
|
|
|
|
public sealed partial class ObserverRoleComponent : Component
|
2023-08-28 16:53:24 -07:00
|
|
|
|
{
|
2024-08-15 20:26:57 +02:00
|
|
|
|
public string Name => Loc.GetString("observer-role-name");
|
2023-08-28 16:53:24 -07:00
|
|
|
|
}
|