Seal/abstract/virtual everything (#6739)
This commit is contained in:
@@ -7,7 +7,7 @@ namespace Content.Shared.Speech
|
||||
/// Component required for entities to be able to speak.
|
||||
/// </summary>
|
||||
[RegisterComponent]
|
||||
public class SharedSpeechComponent : Component
|
||||
public sealed class SharedSpeechComponent : Component
|
||||
{
|
||||
[DataField("enabled")]
|
||||
private bool _enabled = true;
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
namespace Content.Shared.Speech
|
||||
{
|
||||
public class SpeakAttemptEvent : CancellableEntityEventArgs
|
||||
public sealed class SpeakAttemptEvent : CancellableEntityEventArgs
|
||||
{
|
||||
public SpeakAttemptEvent(EntityUid uid)
|
||||
{
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
namespace Content.Shared.Speech
|
||||
{
|
||||
public class SpeechSystem : EntitySystem
|
||||
public sealed class SpeechSystem : EntitySystem
|
||||
{
|
||||
public override void Initialize()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user