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

@@ -6,7 +6,7 @@ using Robust.Shared.GameObjects;
namespace Content.Client.UserInterface.Atmos.GasTank
{
[UsedImplicitly]
public class GasTankBoundUserInterface
public sealed class GasTankBoundUserInterface
: BoundUserInterface
{
public GasTankBoundUserInterface(ClientUserInterfaceComponent owner, object uiKey) :

View File

@@ -14,7 +14,7 @@ using static Robust.Client.UserInterface.Controls.BoxContainer;
namespace Content.Client.UserInterface.Atmos.GasTank
{
public class GasTankWindow
public sealed class GasTankWindow
: BaseWindow
{
private GasTankBoundUserInterface _owner;

View File

@@ -10,7 +10,7 @@ using Robust.Shared.Maths;
namespace Content.Client.UserInterface.Controls
{
public class EntityListDisplay : Control
public sealed class EntityListDisplay : Control
{
public const string StylePropertySeparation = "separation";
@@ -279,7 +279,7 @@ namespace Content.Client.UserInterface.Controls
}
}
public class EntityContainerButton : ContainerButton
public sealed class EntityContainerButton : ContainerButton
{
public EntityUid EntityUid;

View File

@@ -6,6 +6,7 @@ using Robust.Shared.Maths;
namespace Content.Client.UserInterface
{
[GenerateTypedNameReferences]
[Virtual]
public partial class FancyWindow : BaseWindow
{
public FancyWindow()