Fixing some warnings (#6250)

Co-authored-by: Paul Ritter <ritter.paul1@googlemail.com>
This commit is contained in:
wrexbe
2022-01-21 01:38:35 -08:00
committed by GitHub
parent 29b22e2871
commit cea1b21832
191 changed files with 341 additions and 340 deletions

View File

@@ -38,7 +38,7 @@ namespace Content.Client.Tabletop
private float _timePassed; // Time passed since last update sent to the server.
private EntityUid? _draggedEntity; // Entity being dragged
private ScalingViewport? _viewport; // Viewport currently being used
private SS14Window? _window; // Current open tabletop window (only allow one at a time)
private DefaultWindow? _window; // Current open tabletop window (only allow one at a time)
private EntityUid? _table; // The table entity of the currently open game session
public override void Initialize()

View File

@@ -1,4 +1,4 @@
<SS14Window xmlns="https://spacestation14.io"
<DefaultWindow xmlns="https://spacestation14.io"
xmlns:viewport="clr-namespace:Content.Client.Viewport">
<viewport:ScalingViewport Name="ScalingVp" MouseFilter="Stop" RenderScaleMode="CeilInt">
<Button Name="FlipButton"
@@ -8,4 +8,4 @@
HorizontalAlignment="Right"
VerticalAlignment="Top" />
</viewport:ScalingViewport>
</SS14Window>
</DefaultWindow>

View File

@@ -8,7 +8,7 @@ using Robust.Shared.Maths;
namespace Content.Client.Tabletop.UI
{
[GenerateTypedNameReferences]
public partial class TabletopWindow : SS14Window
public partial class TabletopWindow : DefaultWindow
{
public TabletopWindow(IEye? eye, Vector2i size)
{