7 lines
190 B
C#
7 lines
190 B
C#
using System.Diagnostics;
|
|
|
|
namespace TanksServer.Models;
|
|
|
|
[DebuggerDisplay("{TopLeft}, {BottomRight}")]
|
|
internal record struct PixelBounds(PixelPosition TopLeft, PixelPosition BottomRight);
|