From 6cb428f951d5b4ec12149ac4414462000b0455cf Mon Sep 17 00:00:00 2001 From: Jonni Liljamo Date: Wed, 30 Nov 2022 10:57:38 +0200 Subject: [PATCH] Default bevy setup --- sdbclient/src/main.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sdbclient/src/main.rs b/sdbclient/src/main.rs index 6838a41..429973b 100644 --- a/sdbclient/src/main.rs +++ b/sdbclient/src/main.rs @@ -6,6 +6,8 @@ * See LICENSE for licensing information. */ +use bevy::{app::App, DefaultPlugins}; + fn main() { - println!("Hello, world!"); + App::new().add_plugins(DefaultPlugins).run(); } -- 2.44.1