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

public Update ( ) : void
Результат void
Пример #1
0
 /// <summary>
 /// Update the simulation.
 /// </summary>
 /// <param name="elapsedTime">The time elapsed from the las update.</param>
 public void Update(float elapsedTime) //ToDo: put this method private. Before is necessary to create a simulation thread.
 {
     pedList[0].Update(playerInput, elapsedTime);
     _physics.Update(elapsedTime);
 }