Exemple #1
0
            Ore CreateMineCart(Vector2 position)
            {
                var box = new Ore(100, mine.mineCart);

                box.Position = position;
                return(box);
            }
Exemple #2
0
        Ore CreateOreBox(Vector2 position)
        {
            var box = new Ore(100, mine.oreBox);

            box.Position = position;
            return(box);
        }
Exemple #3
0
            Ore CreateMineCart(Vector2 position)
            {
                var box = new Ore(100, ikea.productCart);

                box.Position = position;
                return(box);
            }
Exemple #4
0
            Ore CreateProductBox(Vector2 position)
            {
                var box = new Ore(100, ikea.productBox);

                box.Position = position;
                return(box);
            }
Exemple #5
0
            Ore CreateOreBox(Vector2 position)
            {
                int Amount_Mines = 100 * ikea.ProductsToShip.Count();
                var box          = new Ore(Amount_Mines, ikea.oreBox);

                box.Position = position;


                return(box);
            }
 Ore CreateOreBox(Vector2 position)
 {
     var box = new Ore(100, ikea.product_box);
     box.Position = position;
     return box;
 }
 Ore CreateOreBox(Vector2 position)
 {
     var box = new Ore(100, mine.oreBox);
     box.Position = position;
     return box;
 }
Exemple #8
0
 Ore CreateMineCart(Vector2 position)
 {
     var box = new Ore(100, mine.mineCart);
     box.Position = position;
     return box;
 }
Exemple #9
0
 Ore CreateMineCart(Vector2 position)
 {
     var box = new Ore(100, ikea.productCart);
     box.Position = position;
     return box;
 }