Пример #1
0
        public void AddHangarToSector()
        {
            HangarShip tempShip = new HangarShip(game, spriteSheet);

            tempShip.Initialize(sector);
            overworld.AddOverworldObject(tempShip);
        }
Пример #2
0
        public void AddHangarShip(Vector2 pos)
        {
            HangarShip tmpShip = new HangarShip(game, spriteSheet);

            tmpShip.Initialize();
            tmpShip.position = pos;;
            overworld.AddOverworldObject(tmpShip);
        }