Core.cs 477 B

123456789101112131415161718192021
  1. using GadgetCore;
  2. using GadgetCore.API;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using UnityEngine;
  8. namespace CombatChipChest
  9. {
  10. internal static class Core
  11. {
  12. public static int itemCombatChipChestId = -1;
  13. public static int npcID = -1;
  14. public static MenuInfo menu = null;
  15. public static CombatChipStore combatChipStore = new CombatChipStore(16, "CombatChipChest");
  16. public static GadgetLogger logger;
  17. }
  18. }