Update content vectors to numerics (#17759)

This commit is contained in:
metalgearsloth
2023-07-08 14:08:32 +10:00
committed by GitHub
parent 15772478c9
commit 68480af109
383 changed files with 978 additions and 575 deletions

View File

@@ -1,3 +1,4 @@
using System.Numerics;
using Content.Client.UserInterface.Controls;
using Content.Shared.Access.Components;
using Content.Shared.Access.Systems;
@@ -149,7 +150,7 @@ public sealed partial class ResearchConsoleMenu : FancyWindow
// i'm building the small-ass control here to spare me some mild annoyance in making a new file
var texture = new TextureRect
{
TextureScale = ( 2, 2 ),
TextureScale = new Vector2( 2, 2 ),
VerticalAlignment = VAlignment.Center
};
var label = new RichTextLabel();