comparison gamelib/constants.py @ 20:177e3a7825e8

Add constants file
author Neil Muller <neil@dip.sun.ac.za>
date Sun, 22 Aug 2010 17:07:46 +0200
parents
children 3d460c1274ee
comparison
equal deleted inserted replaced
19:87f8a46b88af 20:177e3a7825e8
1 # Useful constants
2 # copyright boomslang team (see COPYRIGHT file for details)
3
4 SCREEN = (800, 600)
5 FREQ = 44100 # same as audio CD
6 BITSIZE = -16 # unsigned 16 bit
7 CHANNELS = 2 # 1 == mono, 2 == stereo
8 BUFFER = 1024 # audio buffer size in no. of samples