Exemplo n.º 1
0
 public override void Throw(Thrower thrower)
 {
     new Asteroid("Small", thrower.Rotation, thrower.Base, Ld25.Game, 4, true);
 }
Exemplo n.º 2
0
 public override void Throw(Thrower thrower)
 {
     new Asteroid("Medium", thrower.Rotation, thrower.Base, Ld25.Game, 10, true);
 }
Exemplo n.º 3
0
 public override void Throw(Thrower thrower)
 {
     new UFO(thrower.Base, thrower.Rotation, Ld25.Game);
 }
Exemplo n.º 4
0
 public override void Throw(Thrower thrower)
 {
     new Asteroid("Giant", thrower.Rotation, thrower.Base, Ld25.Game, 60, true);
 }
Exemplo n.º 5
0
 public virtual void Throw(Thrower thrower)
 {
     new Asteroid("Large", thrower.Rotation, thrower.Base, Ld25.Game, 25, true);
 }