annotate gamelib/constants.py @ 48:a2980cc9a060

Factor out some constants
author Neil Muller <drnlmuller@gmail.com>
date Mon, 07 May 2012 21:23:54 +0200
parents
children a253fae32a6f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
48
a2980cc9a060 Factor out some constants
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
1 # The usual game constants
a2980cc9a060 Factor out some constants
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
2
a2980cc9a060 Factor out some constants
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
3 WIDTH = 800
a2980cc9a060 Factor out some constants
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
4 HEIGHT = 600
a2980cc9a060 Factor out some constants
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
5 SCREEN = (WIDTH, HEIGHT)
a2980cc9a060 Factor out some constants
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
6 FPS = 30