NHSE/NHSE.Core/Structures/Item/IGridItem.cs
Kurt 4929fcf2de Add enhanced inventory editor
Decouple itemgrid, itemgrid editor, and item editor as separate user controls
Visualize items with fake icons based on item ID and values
Paged editing for large arrays
add fallback for people wanting old editor (hold control when clicking Edit Items from main editor window)
2020-03-28 12:46:25 -07:00

8 lines
124 B
C#

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