| 123456789101112131415161718192021 |
- using GadgetCore;
- using GadgetCore.API;
- using System.Collections.Generic;
- namespace Ships
- {
- internal static class Core
- {
- public static GadgetLogger logger;
- public static PlanetInfo shipPlanet;
- public static bool shipPorterPlaced;
- public static List<int> spawnObjects = new List<int>();
- public static ItemInfo itemOldTex;
- public static ItemInfo itemOldTexShield;
- public static ItemInfo itemOldTexHelmet;
- public static ItemInfo itemOldTexArmor;
- public static ItemInfo itemOldTexDroid;
- }
- }
|