Implement material crafting

This commit is contained in:
Melledy
2025-10-30 19:33:07 -07:00
parent 489b88ea4a
commit 00b77e80e1
5 changed files with 95 additions and 3 deletions

View File

@@ -31,7 +31,8 @@ public class GameData {
@Getter private static DataTable<DiscPromoteLimitDef> DiscPromoteLimitDataTable = new DataTable<>();
@Getter private static DataTable<ItemDef> ItemDataTable = new DataTable<>();
@Getter private static DataTable<ProductionDef> ProductionDataTable = new DataTable<>();
@Getter private static DataTable<MallMonthlyCardDef> MallMonthlyCardDataTable = new DataTable<>();
@Getter private static DataTable<MallPackageDef> MallPackageDataTable = new DataTable<>();
@Getter private static DataTable<MallShopDef> MallShopDataTable = new DataTable<>();