AsteroidShooter.Ship.Update C# (CSharp) Метод

Update() публичный Метод

public Update ( float dt, World world ) : void
dt float
world World
Результат void
    public void Update(float dt, World world)
    {
      frame = World.frame; this.Rule1(dt, world);

      this.Rule0(dt, world);
      this.Rule2(dt, world);
      this.Rule3(dt, world);
      for (int x0 = 0; x0 < Projectiles.Count; x0++)
      {
        Projectiles[x0].Update(dt, world);
      }
    }