├── .cargo └── config.toml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── assets ├── bullet.png ├── player_1.png └── player_2.png └── src ├── args.rs ├── components.rs ├── input.rs └── main.rs /.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanhelsing/extreme_bevy/HEAD/.cargo/config.toml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanhelsing/extreme_bevy/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanhelsing/extreme_bevy/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanhelsing/extreme_bevy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanhelsing/extreme_bevy/HEAD/README.md -------------------------------------------------------------------------------- /assets/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanhelsing/extreme_bevy/HEAD/assets/bullet.png -------------------------------------------------------------------------------- /assets/player_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanhelsing/extreme_bevy/HEAD/assets/player_1.png -------------------------------------------------------------------------------- /assets/player_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanhelsing/extreme_bevy/HEAD/assets/player_2.png -------------------------------------------------------------------------------- /src/args.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanhelsing/extreme_bevy/HEAD/src/args.rs -------------------------------------------------------------------------------- /src/components.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanhelsing/extreme_bevy/HEAD/src/components.rs -------------------------------------------------------------------------------- /src/input.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanhelsing/extreme_bevy/HEAD/src/input.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanhelsing/extreme_bevy/HEAD/src/main.rs --------------------------------------------------------------------------------