From b5a176c3db07090e4aac99a265f345d96568c7c8 Mon Sep 17 00:00:00 2001 From: Ame <104745335+ameknite@users.noreply.github.com> Date: Sat, 15 Jul 2023 21:29:04 -0600 Subject: [PATCH] update to 0.11 (#36) --- Cargo.toml | 2 +- src/main.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 072c7fc..1fe8c06 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,4 +5,4 @@ edition = "2021" license = "MIT OR Apache-2.0" [dependencies] -bevy = "0.10" +bevy = "0.11" diff --git a/src/main.rs b/src/main.rs index c2369c0..dc2e207 100644 --- a/src/main.rs +++ b/src/main.rs @@ -9,7 +9,7 @@ use bevy::prelude::*; fn main() { App::new() .add_plugins(DefaultPlugins) - .add_startup_system(setup) + .add_systems(Startup, setup) .run(); }