From 4782a37f9447c277a0335b50b734a99870445854 Mon Sep 17 00:00:00 2001 From: Rendo Date: Mon, 4 May 2026 23:40:58 +0500 Subject: [PATCH] Bevy basics --- src/main.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index b3411d9..032a096 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,3 +1,5 @@ +use bevy::prelude::*; + fn main() { - println!("Hello, topchejak!"); + App::new().run(); }