hi there guys can you suggest me some games that I can program in c sharp in an object oriented way? just simple programs that can be done for maybe less than a week since I'm just starting to learn it yet. Any idea? Please help me guys I will really appreciate it. Thanks in advance!

Recommended Answers

All 4 Replies

Asteroids is a classic. And is a nice skeleton for building a class hierarchy out of:

abstract class GameOjbect {}
abstract class MoveableObject : GameObject {}
abstract class StaticObject : GameObject {}
class Asteroid : MoveableObject {}
class Ship : MoveableObject {}
class ScoreText : StaticObject {}

I could go on all day, but hopefully you see why this is a good OOP exercise =)

One which I used to play for hours was: Dave Game
You can probably develop this game with a couple of levels.

Pong, Breakout, Space Invaders, Pacman, Asteroids - Best games to learn the framework with. If you need help just ask, I'm very talented with XNA. I've been studying it for 2 years now.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.