Seal/abstract/virtual everything (#6739)
This commit is contained in:
@@ -9,7 +9,7 @@ namespace Content.Server.Tabletop.Components
|
||||
{
|
||||
[RegisterComponent]
|
||||
[ComponentReference(typeof(SharedTabletopDraggableComponent))]
|
||||
public class TabletopDraggableComponent : SharedTabletopDraggableComponent
|
||||
public sealed class TabletopDraggableComponent : SharedTabletopDraggableComponent
|
||||
{
|
||||
private NetUserId? _draggingPlayer;
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@ namespace Content.Server.Tabletop.Components
|
||||
/// A component that makes an object playable as a tabletop game.
|
||||
/// </summary>
|
||||
[RegisterComponent, Friend(typeof(TabletopSystem))]
|
||||
public class TabletopGameComponent : Component
|
||||
public sealed class TabletopGameComponent : Component
|
||||
{
|
||||
[DataField("boardName")]
|
||||
public string BoardName { get; } = "tabletop-default-board-name";
|
||||
|
||||
@@ -8,7 +8,7 @@ namespace Content.Server.Tabletop.Components
|
||||
/// Component for marking an entity as currently playing a tabletop.
|
||||
/// </summary>
|
||||
[RegisterComponent, Friend(typeof(TabletopSystem))]
|
||||
public class TabletopGamerComponent : Component
|
||||
public sealed class TabletopGamerComponent : Component
|
||||
{
|
||||
[DataField("tabletop")]
|
||||
public EntityUid Tabletop { get; set; } = EntityUid.Invalid;
|
||||
|
||||
Reference in New Issue
Block a user