heute fertig(tm)

This commit is contained in:
Schrottkatze 2024-11-22 22:39:00 +01:00
parent b72cfae04b
commit 1bf852aff4
Signed by: schrottkatze
SSH key fingerprint: SHA256:hXb3t1vINBFCiDCmhRABHX5ocdbLiKyCdKI4HK2Rbbc
2 changed files with 9 additions and 1 deletions

View file

@ -1,10 +1,12 @@
use bevy::prelude::*;
use bevy_rapier2d::prelude::*;
use player::player_plugin;
use scene::scene_plugin;
mod player;
mod scene;
mod set;
fn game_plugin(app: &mut App) {
app.add_plugins(player_plugin);
app.add_plugins((player_plugin, scene_plugin));
}