Game of Life in C++ using the SDL2
I wrote a GUI version of Game of Life in C++ using the SDL2 graphics library: https://github.com/gdonald/game-of-life-cpp
I wrote a GUI version of Game of Life in C++ using the SDL2 graphics library: https://github.com/gdonald/game-of-life-cpp
I wrote a GUI version of PigPen in C++ using the SDL2 graphics library: https://github.com/gdonald/pigpen-cpp
I wrote a GUI version of TicTacToe in C++ using the SDL2 graphics library: https://github.com/gdonald/tictactoe-cpp
I wrote a Console version of Blackjack in Ruby.
Here's a command to install lots of games on your Debian box: yes | \ for x in `apt-cache search game \ | sort \ | awk 'BEGIN { FS = " - " } { print $1 }'`; do \ apt-get install $x; \ done