The other day I was tutoring a freshman programmer program his first minesweeper text game in C++. Here is the resulting code. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 [...]
Archive for the ‘Game Development’ Category
TicTacToe – C (procedural style)
Posted by kenny on July 19th, 2011
This is a simple version of TicTacToe written in C. I wrote this primarily to help a friend of mine. It has virtually no error checking (primarily in regards to the scanf functions, so don’t mess up while inputting!) #include <stdio.h> char board[3][3]; char turn = ‘X’; void init(char board[3][3]); void draw(char [...]
SDL – Simple Space Shooter Game Demo
Posted by kenny on September 20th, 2009
This page contains source code for a simple space shooter game written in C++ using the SDL library. There are no enemies or levels, but only a ship that shoots bullets. This is meant for a beginner who is interested in getting started with SDL for use of making games. (This will be an ongoing [...]

Posted in
Tags:

