18 lines
333 B
Rust
18 lines
333 B
Rust
|
use bevy::prelude::*;
|
||
|
|
||
|
pub mod util;
|
||
|
pub mod components;
|
||
|
pub mod systems;
|
||
|
pub mod characters;
|
||
|
|
||
|
use crate::characters::*;
|
||
|
|
||
|
fn main() {
|
||
|
App::new()
|
||
|
.add_plugins(DefaultPlugins)
|
||
|
// Add systems, whatnot
|
||
|
.add_systems(Startup, spawn_player_character)
|
||
|
.add_systems(Startup, spawn_player_character)
|
||
|
.run();
|
||
|
}
|