removing an inaccurate underscore

rapier
Zynh0722 2024-02-16 23:14:44 -08:00
parent d10985909b
commit 76758fa2a8
1 changed files with 2 additions and 2 deletions

View File

@ -103,8 +103,8 @@ fn event(app: &App, model: &mut Model, event: WindowEvent) {
} }
// Update the state of your application here. By default, this gets called right before `view`. // Update the state of your application here. By default, this gets called right before `view`.
fn update(_app: &App, _model: &mut Model, _update: Update) { fn update(_app: &App, model: &mut Model, _update: Update) {
_model.engine.step(); model.engine.step();
} }
// Draw the state of your `Model` into the given `Frame` here. // Draw the state of your `Model` into the given `Frame` here.