WIP changes for layout engine and config

This commit is contained in:
Shawrkie Williams
2025-12-22 17:18:44 -05:00
parent fff0578b74
commit bc9a7b9122
6 changed files with 341 additions and 10 deletions
@@ -7,6 +7,10 @@ public class GeneralSettings
{
public InventoryStackMode StackMode { get; set; } = InventoryStackMode.AggregateByItemId;
public bool DebugEnabled { get; set; } = false;
public bool CompactPackingEnabled { get; set; } = true;
public int CompactLookahead { get; set; } = 24;
public bool CompactPreferLargestFit { get; set; } = true;
public bool CompactStableInsert { get; set; } = true;
}
public enum InventoryStackMode : byte