UI changes and stuff

This commit is contained in:
Asriel Camora
2023-06-23 03:02:33 -07:00
parent 37156c7f33
commit a5d1b18840
6 changed files with 445 additions and 172 deletions
+2
View File
@@ -1,5 +1,6 @@
using Lumina.Excel.GeneratedSheets;
using Lumina.Excel;
using Dalamud;
namespace Craftimizer.Plugin;
@@ -14,6 +15,7 @@ public static class LuminaSheets
public static readonly ExcelSheet<Addon> AddonSheet = Service.DataManager.GetExcelSheet<Addon>()!;
public static readonly ExcelSheet<ClassJob> ClassJobSheet = Service.DataManager.GetExcelSheet<ClassJob>()!;
public static readonly ExcelSheet<Item> ItemSheet = Service.DataManager.GetExcelSheet<Item>()!;
public static readonly ExcelSheet<Item> ItemSheetEnglish = Service.DataManager.GetExcelSheet<Item>(ClientLanguage.English)!;
public static readonly ExcelSheet<Materia> MateriaSheet = Service.DataManager.GetExcelSheet<Materia>()!;
public static readonly ExcelSheet<BaseParam> BaseParamSheet = Service.DataManager.GetExcelSheet<BaseParam>()!;
}