uh change idea

This commit is contained in:
Schrottkatze 2025-06-10 20:11:08 +02:00
parent fc83ab8452
commit 684fdd5558
Signed by: schrottkatze
SSH key fingerprint: SHA256:FPOYVeBy3QP20FEM42uWF1Wa/Qhlk+L3S2+Wuau/Auo
5 changed files with 70 additions and 3 deletions

View file

@ -7,6 +7,16 @@ use crate::{
mod camera;
mod scene;
mod tram {
use bevy::prelude::*;
fn spawn_tram(
mut c: Commands,
mut meshes: ResMut<Assets<Mesh>>,
mut materials: ResMut<Assets<StandardMaterial>>,
) {
}
}
/// Gameplay system set. All functions in this control the gameplay (duh).
#[derive(SystemSet, Debug, Clone, PartialEq, Eq, Hash)]