Core.cs 535 B

123456789101112131415161718192021
  1. using GadgetCore;
  2. using GadgetCore.API;
  3. using System.Collections.Generic;
  4. namespace Ships
  5. {
  6. internal static class Core
  7. {
  8. public static GadgetLogger logger;
  9. public static PlanetInfo shipPlanet;
  10. public static bool shipPorterPlaced;
  11. public static List<int> spawnObjects = new List<int>();
  12. public static ItemInfo itemOldTex;
  13. public static ItemInfo itemOldTexShield;
  14. public static ItemInfo itemOldTexHelmet;
  15. public static ItemInfo itemOldTexArmor;
  16. public static ItemInfo itemOldTexDroid;
  17. }
  18. }