Core.cs 395 B

12345678910111213141516171819
  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 MonsterNests
  9. {
  10. internal static class Core
  11. {
  12. public static ObjectInfo objectBugspotBig;
  13. public static ObjectInfo objectSpiderEgg;
  14. public static ObjectInfo objectGoldenShroom;
  15. public static GadgetLogger logger;
  16. }
  17. }