servicepoint-tanks/TanksServer/Models/PixelBounds.cs
2024-04-13 16:27:45 +02:00

7 lines
190 B
C#

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