Fix warnings in MapRenderer module (#17865)

This commit is contained in:
TemporalOroboros
2023-08-07 18:07:08 -07:00
committed by GitHub
parent 75b349ab97
commit 7cdc7ab972
6 changed files with 22 additions and 22 deletions

View File

@@ -6,7 +6,7 @@ using SixLabors.ImageSharp.PixelFormats;
namespace Content.MapRenderer;
public sealed class RenderedGridImage <T> where T : unmanaged, IPixel<T>
public sealed class RenderedGridImage<T> where T : unmanaged, IPixel<T>
{
public Image<T> Image;
public Vector2 Offset { get; set; } = Vector2.Zero;