Exemplo n.º 1
0
 public void PookaLocReset()
 {
     if (PookaLoc.X < 0)
     {
         PookaLoc.X = this.Game.GraphicsDevice.Viewport.Width + 350;
         digdug.AddPoint();
         CharSpeed += 20;
     }
     if (PookaLoc2.X < 0)
     {
         PookaLoc2.X = this.Game.GraphicsDevice.Viewport.Width + 900;
         digdug.AddPoint();
         CharSpeed += 20;
     }
 }
Exemplo n.º 2
0
 public void FygarLocReset()
 {
     if (FygarLoc.X < 0)
     {
         FygarLoc.X = this.Game.GraphicsDevice.Viewport.Width + 50;
         digdug.AddPoint();
         CharSpeed += 15;
     }
     if (FygarLoc2.X < 0)
     {
         FygarLoc2.X = this.Game.GraphicsDevice.Viewport.Width + 500;
         digdug.AddPoint();
         CharSpeed += 15;
     }
     if (FygarLoc3.X < 0)
     {
         FygarLoc3.X = this.Game.GraphicsDevice.Viewport.Width + 800;
         digdug.AddPoint();
         CharSpeed += 15;
     }
 }