![logo](images/logo.png) A space shooter based on the [lessons](https://www.youtube.com/watch?v=98hTrHen7IA&list=PL9333715188CD7669) of [Mike Geig](https://twitter.com/mikegeig). Main innovations: game menu, network game support. [Demonstration](https://www.youtube.com/watch?v=6D-t6TV8ITs) of the game. This game is under development. Currently, the repository has been suspended since 2020. ![menu](images/menu.png) ![game](images/game.png) ## Build To build, you need to download the [Allegro static](https://github.com/liballeg/allegro5/releases) libraries and [static dependencies](https://github.com/liballeg/allegro_winpkg/releases). A pre-installed static [Enet](http://enet.bespin.org/) library is required to support the network ([package for MSYS2](https://packages.msys2.org/package/mingw-w64-x86_64-enet?repo=mingw64)). Also, an installed g++ compiler and cmake build system are required for the assembly. The working compilation of the project was carried out in [MSYS2](https://www.msys2.org/). ```sh mkdir build cd build cmake -G "Unix Makefiles" -B . -S ../game -D PATH_ALLEGRO_STATIC="C:\" -D PATH_DEPS_STATIC="C:\" make ``` The basic data needed to run the game is located in the [data](data/) directory.