removing an inaccurate underscore
parent
d10985909b
commit
76758fa2a8
|
@ -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.
|
||||||
|
|
Loading…
Reference in New Issue