9 lines
150 B
Rust
9 lines
150 B
Rust
use bevy::prelude::*;
|
|
|
|
pub mod marker;
|
|
pub mod target_ui;
|
|
|
|
pub fn plugin(app: &mut App) {
|
|
app.add_plugins((marker::plugin, target_ui::plugin));
|
|
}
|