mine2d/Mine2d/game/frontend/inventory/InventoryConstants.cs

13 lines
223 B
C#

namespace Mine2d.game.frontend.inventory;
public enum InventoryKind {
None,
Player,
Workbench,
DebugConsole
}
public static class InventoryConstants
{
public static readonly int ExtraSlotsWidth = 21;
}