Rename & restructure birdoids module

The module isn't the plugin, so it's going to be called simply
"birdoids" going forward.

I've turned it into a folder and a `mod.rs` so I can slap down a small,
custom physics system.
This commit is contained in:
2025-08-20 14:23:45 -05:00
parent 214da65db5
commit 4150f85ccc
3 changed files with 4 additions and 4 deletions

View File

@@ -1,9 +1,9 @@
use bevy::prelude::*;
mod birdoids_plugin;
mod birdoids;
mod debug_plugin;
use birdoids_plugin::BoidsPlugin;
use birdoids::BoidsPlugin;
use debug_plugin::BoidsDebugPlugin;
fn main() {