Space Invaders C++ implementation using NCurses library
Special thanks to Serge Lansiquot for this awesome game dev C++ course
Course: https://www.udemy.com/course/learn-programming-by-making-games
apt install cmake ncurses-dev
brew install cmake ncurses
$ mkdir build
$ cd build
$ cmake -DCMAKE_BUILD_TYPE=Release ..
$ cmake --build .
$ ./SpaceInvaders