beginning of interaction

This commit is contained in:
LorrensP-2158466
2025-04-05 22:11:24 +02:00
parent 4a9dc86fc0
commit 8fc63fdb50
10 changed files with 3301 additions and 447 deletions

8
src/interaction/mod.rs Normal file
View File

@@ -0,0 +1,8 @@
use bevy::prelude::*;
mod objects;
mod ui;
pub fn plugin(app: &mut App) {
app.add_plugins((ui::plugin, objects::plugin));
}