update method

  1. @override
  2. @mustCallSuper
void update(
  1. double dt
)

This should update the state of the game.

Implementation

@override
@mustCallSuper
void update(double dt) => world.update(dt);