very simple game base
All checks were successful
Build Bevy Game (Linux) / build (push) Successful in 19m17s

This commit is contained in:
Crizomb 2025-12-25 20:38:52 +01:00
parent 1d5ef2006a
commit 27da890604
5 changed files with 32 additions and 42 deletions

5
src/camera.rs Normal file
View file

@ -0,0 +1,5 @@
use bevy::{prelude::*, render::renderer};
pub fn spawn_camera(mut commands: Commands) {
commands.spawn(Camera2d);
}