Core.cs 765 B

123456789101112131415161718192021222324
  1. using GadgetCore;
  2. using GadgetCore.API;
  3. namespace MonsterNests
  4. {
  5. internal static class Core
  6. {
  7. public static ObjectInfo objectBugspotBig;
  8. public static ObjectInfo objectBugTree;
  9. public static ObjectInfo objectSpiderEgg;
  10. public static ObjectInfo objectSpiderEggCM;
  11. public static ObjectInfo objectGoldenShroom;
  12. public static ObjectInfo objectWizShroom;
  13. public static ObjectInfo objectSpikePlant;
  14. public static ObjectInfo objectSpikePlantCM;
  15. public static ObjectInfo objectAncientCrystal;
  16. public static ObjectInfo objectAncientCrystalCM;
  17. public static ObjectInfo objectPlagueNest;
  18. public static ObjectInfo objectFrozenWisp;
  19. public static ObjectInfo objectMolten;
  20. public static GadgetLogger logger;
  21. }
  22. }