mirror of
https://github.com/kwsch/NHSE.git
synced 2026-04-30 10:36:59 -05:00
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)
8 lines
124 B
C#
8 lines
124 B
C#
namespace NHSE.Core
|
|
{
|
|
public interface IGridItem
|
|
{
|
|
int Width { get; }
|
|
int Height { get; }
|
|
}
|
|
} |