Forum: Python Jun 30th, 2009 |
| Replies: 2 Views: 246 if event.type == QUIT:
exit()
elif event.type == KEYDOWN:
if event.key == K_ESCAPE:
exit()
List of pygame keys (http://www.pygame.org/docs/ref/key.html) |
Forum: C++ Jun 23rd, 2009 |
| Replies: 10 Views: 456 http://www.mindview.net/Books/TICPP/ThinkingInCPP2e.html
Direct link to Volume 1 (http://www.mindviewinc.com/downloads/TICPP-2nd-ed-Vol-one.zip)
Direct link to Volume 2... |
Forum: Game Development May 18th, 2007 |
| Replies: 4 Views: 4,091 You should also look at AllegroGL. It allows you to use all the useful features of Allegro (SDL and Allegro are alike) and OpenGL together. I use it because I already know Allegro.
(Hopefully this... |