pickup hanlder

This commit is contained in:
LorrensP-2158466
2025-04-06 15:08:25 +02:00
parent c7ed475278
commit 4bd1f1343e
9 changed files with 216 additions and 139 deletions

View File

@@ -3,6 +3,9 @@ use bevy::prelude::*;
mod objects;
mod ui;
#[derive(Component)]
pub struct Interact;
pub fn plugin(app: &mut App) {
app.add_plugins((ui::plugin, objects::plugin));
}