bevy_fighter 0.1.1

A mildly opinionated micro-engine for building 2D fighting games with bevy
Documentation
use bevy_fighter::prelude::*;

fn main() {
    App::new()
        .add_plugins(DefaultPlugins)
        .add_plugin(FighterInputPlugin)
        .add_startup_system(setup)
        .run();
}


fn setup(
    mut commands: Commands,
  ) {
  
  commands
    .spawn_bundle(UiCameraBundle::default());
}