Exemplo n.º 1
0
        public void SpawnOoze(Vector3 pos, Room room, int it, float groundHeight)
        {
            Ooze no = new Ooze(pos, room, spriteSheets["Ooze"]);

            no.Iteration    = it;
            no.Health       = 50;       // 150 - (it * 50);
            no.groundHeight = groundHeight;
            Enemies.Add(no);
        }
Exemplo n.º 2
0
 public void SpawnOoze(Vector3 pos, Room room, int it, float groundHeight)
 {
     Ooze no = new Ooze(pos, room, spriteSheets["Ooze"]);
     no.Iteration = it;
     no.Health = 50; // 150 - (it * 50);
     no.groundHeight = groundHeight;
     Enemies.Add(no);
 }