mirror of
https://github.com/kwsch/NHSE.git
synced 2026-05-09 04:01:32 -05:00
7 lines
102 B
C#
7 lines
102 B
C#
namespace NHSE.Core;
|
|
|
|
public interface IGridItem
|
|
{
|
|
int Width { get; }
|
|
int Height { get; }
|
|
} |