Use 'new' expression in places where the type is evident for content (#2590)
* Content.Client * Content.Benchmarks * Content.IntegrationTests * Content.Server * Content.Server.Database * Content.Shared * Content.Tests * Merge fixes Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com>
This commit is contained in:
@@ -18,10 +18,10 @@ namespace Content.Client.Arcade
|
||||
{
|
||||
public class BlockGameMenu : SS14Window
|
||||
{
|
||||
private static readonly Color OverlayBackgroundColor = new Color(74,74,81,180);
|
||||
private static readonly Color OverlayShadowColor = new Color(0,0,0,83);
|
||||
private static readonly Color OverlayBackgroundColor = new(74,74,81,180);
|
||||
private static readonly Color OverlayShadowColor = new(0,0,0,83);
|
||||
|
||||
private static readonly Vector2 BlockSize = new Vector2(15,15);
|
||||
private static readonly Vector2 BlockSize = new(15,15);
|
||||
|
||||
private readonly BlockGameBoundUserInterface _owner;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user