Seal/abstract/virtual everything (#6739)
This commit is contained in:
@@ -6,12 +6,12 @@ using Robust.Shared.Serialization;
|
||||
namespace Content.Shared.Tools.Components
|
||||
{
|
||||
[NetworkedComponent]
|
||||
public class SharedMultipleToolComponent : Component
|
||||
public abstract class SharedMultipleToolComponent : Component
|
||||
{
|
||||
}
|
||||
|
||||
[NetSerializable, Serializable]
|
||||
public class MultipleToolComponentState : ComponentState
|
||||
public sealed class MultipleToolComponentState : ComponentState
|
||||
{
|
||||
public string QualityName { get; }
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@ namespace Content.Shared.Tools.Components
|
||||
}
|
||||
|
||||
[NetSerializable, Serializable]
|
||||
public class WelderComponentState : ComponentState
|
||||
public sealed class WelderComponentState : ComponentState
|
||||
{
|
||||
public float FuelCapacity { get; }
|
||||
public float Fuel { get; }
|
||||
|
||||
@@ -7,7 +7,7 @@ using Robust.Shared.Utility;
|
||||
namespace Content.Shared.Tools
|
||||
{
|
||||
[Prototype("tool")]
|
||||
public class ToolQualityPrototype : IPrototype
|
||||
public sealed class ToolQualityPrototype : IPrototype
|
||||
{
|
||||
[DataField("id", required: true)]
|
||||
public string ID { get; } = default!;
|
||||
|
||||
Reference in New Issue
Block a user