Seal/abstract/virtual everything (#6739)
This commit is contained in:
@@ -11,7 +11,7 @@ namespace Content.Server.Station;
|
||||
/// </summary>
|
||||
[RegisterComponent]
|
||||
[Friend(typeof(GameTicker))]
|
||||
public class BecomesStationComponent : Component
|
||||
public sealed class BecomesStationComponent : Component
|
||||
{
|
||||
/// <summary>
|
||||
/// Mapping only. Should use StationIds in all other
|
||||
|
||||
@@ -12,7 +12,7 @@ namespace Content.Server.Station;
|
||||
/// </summary>
|
||||
[RegisterComponent]
|
||||
[Friend(typeof(GameTicker))]
|
||||
public class PartOfStationComponent : Component
|
||||
public sealed class PartOfStationComponent : Component
|
||||
{
|
||||
[DataField("id", required: true)] // does yamllinter even lint maps for required fields?
|
||||
[ViewVariables(VVAccess.ReadWrite)]
|
||||
|
||||
@@ -6,7 +6,7 @@ using Robust.Shared.ViewVariables;
|
||||
namespace Content.Server.Station;
|
||||
|
||||
[RegisterComponent, Friend(typeof(StationSystem))]
|
||||
public class StationComponent : Component
|
||||
public sealed class StationComponent : Component
|
||||
{
|
||||
[ViewVariables]
|
||||
public StationId Station = StationId.Invalid;
|
||||
|
||||
Reference in New Issue
Block a user