Tag Archives: game development

Snake game written in C#

[Summary]This is my own version of the class game Snake.  This game has taken all of a few hours to develop, and the code for which is very simple.[/Summary] Preview Below is a video of the game being played for … Continue reading

Posted in C# WinForms, Game Development | Tagged , , | Leave a comment

Pong game written in C#

[Summary]This post is the culmination of a weeks work gradually developing a pong style game using C# WinForms.[/Summary] Preview Below is a video of a pong style game written in C#.  The code is relatively simple, but too long to … Continue reading

Posted in C# WinForms, Game Development | Tagged , , | Leave a comment

C# Tracking cursor position and click events

[Summary]The purpose of this tutorial is to investigate how to follow the cursor on a Windows Form (WinForm), and use its position to determine if we have clicked on a simple object.[/Summary] Downloads Download source code / demo project.  (Visual … Continue reading

Posted in C# WinForms, Game Development | Tagged , , | Leave a comment

C# Collision Detection

[Summary]Collision detection is a fundamental part of games development.  You would be hard pressed to find a game without it, and developing it doesn’t have to be complicated.[/Summary] Introduction The purpose of this tutorial is to introduce the absolute basics … Continue reading

Posted in C# WinForms, Game Development, General | Tagged , , | Leave a comment