First config implementation
This commit is contained in:
@@ -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();
|
||||
}
|
||||
Reference in New Issue
Block a user