27 lines
378 B
Markdown
27 lines
378 B
Markdown
# Gaem
|
|
|
|
* Run & gun
|
|
* Nuclear throne -esque
|
|
* Single gun type
|
|
* Single map
|
|
* Single enemy type
|
|
* Collect letters to win, up to 7 letters we have 8 character sprites
|
|
* The word is WINNER
|
|
|
|
## Run
|
|
|
|
Linux and Windows:
|
|
```sh
|
|
zig build run
|
|
```
|
|
|
|
Web:
|
|
```sh
|
|
zig build -Dtarget=wasm32-emscripten run
|
|
```
|
|
|
|
Cross-compile for Windows from Linux:
|
|
```sh
|
|
zig build -Dtarget=x86_64-windows
|
|
```
|