dev tools init

This commit is contained in:
Rendo 2026-01-24 22:01:56 +05:00
commit 950451938f
3 changed files with 15 additions and 2 deletions

7
src/dev_tools/mod.rs Normal file
View file

@ -0,0 +1,7 @@
use bevy::prelude::*;
pub struct DevToolsPlugin;
impl Plugin for DevToolsPlugin {
fn build(&self, app: &mut App) {}
}