servicepoint-tanks/tanks-backend/TanksServer/Models/PixelBounds.cs
2024-04-21 14:32:29 +02:00

7 lines
190 B
C#

using System.Diagnostics;
namespace TanksServer.Models;
[DebuggerDisplay("{TopLeft}, {BottomRight}")]
internal record struct PixelBounds(PixelPosition TopLeft, PixelPosition BottomRight);