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