NHSE/NHSE.Core/Structures/Item/IGridItem.cs
2026-01-13 16:02:58 -06:00

7 lines
102 B
C#

namespace NHSE.Core;
public interface IGridItem
{
int Width { get; }
int Height { get; }
}