Target UI multiplayer (#95)

This commit is contained in:
PROMETHIA-27
2025-12-21 12:01:50 -05:00
committed by GitHub
parent cc7e2aae70
commit c3c5ae6dfb
5 changed files with 61 additions and 50 deletions

View File

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