fix: the window title in simple_move_2d was wrong

This commit is contained in:
lisk77 2025-03-11 11:16:47 +01:00
parent f6331b2b27
commit 1ae32c7384

View file

@ -67,7 +67,7 @@ fn update_position(input: WinitInputHelper, transform: &mut Transform2D, dt: f32
fn main() {
App::new()
.with_title("Hello world")
.with_title("Simple Move 2D")
.with_preset(App2D)
.run::<Renderer2D>(setup, update);
}