From 16a9fca8ce6f48206918b0a93e9b06b1b62d7de2 Mon Sep 17 00:00:00 2001 From: Zynh Ludwig Date: Mon, 29 Jul 2024 23:03:53 -0700 Subject: [PATCH] default plugins --- src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.rs b/src/main.rs index 2d16eca..6ecf13c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -2,6 +2,7 @@ use bevy::prelude::*; fn main() { App::new() + .add_plugins(DefaultPlugins) .add_systems(Startup, add_people) .add_systems(Update, (hello_world, greet_people).chain()) .run();