Initial commit

This commit is contained in:
Hilmar Wiegand
2019-06-19 15:25:11 +02:00
commit 09b7c0228c
6 changed files with 4849 additions and 0 deletions

26
README.md Normal file
View File

@@ -0,0 +1,26 @@
# amethyst-cli-starter-2d
## How to run
To run the game, use
```
cargo run --features "vulkan"
```
on Windows and Linux, and
```
cargo run --features "metal"
```
on macOS.
For building without any graphics backend, you can use
```
cargo run --features "empty"
```
but be aware that as soon as you need any rendering you won't be able to run your game when using
the `empty` feature.