servicepoint-tanks/tanks-backend/TanksServer/Models/PixelBounds.cs

7 lines
190 B
C#
Raw Permalink Normal View History

2024-04-13 16:27:45 +02:00
using System.Diagnostics;
namespace TanksServer.Models;
2024-04-13 16:27:45 +02:00
[DebuggerDisplay("{TopLeft}, {BottomRight}")]
internal record struct PixelBounds(PixelPosition TopLeft, PixelPosition BottomRight);