Dodger is a simple game that involves moving a red block around on the screen without touching the sides or the other moving blocks.

I basically cloned this game from a website that I saw. I decided I wanted to rewrite it in C#; the original was written in JavaScript and can be found here. I have no control over the website, so if it goes down, sorry.

The biggest difference between the original and this version, is the way that speed is calculated. In the original speed jumped in steps depending on how long the player stayed alive. In my version it still depends on time, but it increases gradually instead of jumping.

Colors can be changed by clicking the little icon in the upper left corner and selecting Options.

You can download the source code to Dodger here and a binary here. In order to run the binary you will need the .NET Framework 1.1; to build the source you will need Visual Studio 2003 (NOTE: Really only the .NET Framework SDK is needed, but I have not included make files for this).