Seal/abstract/virtual everything (#6739)

This commit is contained in:
mirrorcult
2022-02-16 00:23:23 -07:00
committed by GitHub
parent 4dfcacb86a
commit ec4d4688c7
1771 changed files with 2216 additions and 2164 deletions

View File

@@ -8,7 +8,7 @@ namespace Content.Server.Speech.Components;
/// Applies accent to user while they wear entity as a clothing.
/// </summary>
[RegisterComponent]
public class AddAccentClothingComponent : Component
public sealed class AddAccentClothingComponent : Component
{
/// <summary>
/// Component name for accent that will be applied.

View File

@@ -3,7 +3,7 @@
namespace Content.Server.Speech.Components
{
[RegisterComponent]
public class BackwardsAccentComponent : Component
public sealed class BackwardsAccentComponent : Component
{
}
}

View File

@@ -3,7 +3,7 @@
namespace Content.Server.Speech.Components
{
[RegisterComponent]
public class OwOAccentComponent : Component
public sealed class OwOAccentComponent : Component
{
}
}

View File

@@ -21,7 +21,7 @@ namespace Content.Server.Speech.Components
/// Replaces any spoken sentences with a random word.
/// </summary>
[RegisterComponent]
public class ReplacementAccentComponent : Component
public sealed class ReplacementAccentComponent : Component
{
[DataField("accent", customTypeSerializer: typeof(PrototypeIdSerializer<ReplacementAccentPrototype>), required: true)]
public string Accent = default!;

View File

@@ -3,7 +3,7 @@
namespace Content.Server.Speech.Components
{
[RegisterComponent]
public class SpanishAccentComponent : Component
public sealed class SpanishAccentComponent : Component
{
}
}

View File

@@ -3,7 +3,7 @@ using Robust.Shared.GameObjects;
namespace Content.Server.Speech.Components
{
[RegisterComponent]
public class StutteringAccentComponent : Component
public sealed class StutteringAccentComponent : Component
{
}
}