bevy_fighter 0.1.1

A mildly opinionated micro-engine for building 2D fighting games with bevy
Documentation
1
2
3
4
5
6
7
8
9
10
11
use bevy_fighter::prelude::*;

#[test]
fn countdown_from_0() {
  assert_eq!(countdown(0), 0);
}

#[test]
fn countdown_from_10() {
  assert_eq!(countdown(10), 9);
}