Implement VERY basic configuration window and stacking

This commit is contained in:
Zeffuro
2025-12-22 16:34:01 +01:00
parent fec004ffce
commit fff0578b74
16 changed files with 363 additions and 52 deletions
@@ -0,0 +1,16 @@
using System.Numerics;
using KamiToolKit.Classes;
namespace AetherBags.Configuration;
public class GeneralSettings
{
public InventoryStackMode StackMode { get; set; } = InventoryStackMode.AggregateByItemId;
public bool DebugEnabled { get; set; } = false;
}
public enum InventoryStackMode : byte
{
NaturalStacks = 0,
AggregateByItemId = 1,
}