The examples and learning plugins have outlived their usefulness, and this repo already has substantial history in being a boids plugin. I'm renaming the crate (and repo, but that isn't visible to git) to treat this simply as a boids repo.
13 lines
196 B
Rust
13 lines
196 B
Rust
use bevy::prelude::*;
|
|
|
|
mod birdoids_plugin;
|
|
|
|
use birdoids_plugin::BoidsPlugin;
|
|
|
|
fn main() {
|
|
App::new()
|
|
.add_plugins(DefaultPlugins)
|
|
.add_plugins(BoidsPlugin)
|
|
.run();
|
|
}
|