using Lumina.Excel; using Lumina.Excel.GeneratedSheets; namespace ChatTwo; public static class Sheets { public static readonly ExcelSheet ItemSheet; public static readonly ExcelSheet WorldSheet; public static readonly ExcelSheet LogFilterSheet; public static readonly ExcelSheet TextCommandSheet; static Sheets() { ItemSheet = Plugin.DataManager.GetExcelSheet()!; WorldSheet = Plugin.DataManager.GetExcelSheet()!; LogFilterSheet = Plugin.DataManager.GetExcelSheet()!; TextCommandSheet = Plugin.DataManager.GetExcelSheet()!; } }