First config implementation

This commit is contained in:
Zeffuro
2025-12-21 11:01:12 +01:00
parent f5044e707b
commit f8fbd4a476
9 changed files with 275 additions and 4 deletions
@@ -0,0 +1,11 @@
using System.Numerics;
using KamiToolKit.Classes;
namespace AetherBags.Configuration;
public class CurrencySettings
{
public Vector4 DefaultColor { get; set; } = ColorHelper.GetColor(8);
public Vector4 CappedColor { get; set; } = ColorHelper.GetColor(43);
public Vector4 LimitColor { get; set; } = ColorHelper.GetColor(17);
}
@@ -0,0 +1,11 @@
using System.Numerics;
using KamiToolKit.Classes;
namespace AetherBags.Configuration;
public class SystemConfiguration
{
public const string FileName = "AetherBags.json";
public CurrencySettings Currency { get; set; } = new();
}