comparison gamelib/constants.py @ 53:3d460c1274ee

Add button size constant
author Neil Muller <neil@dip.sun.ac.za>
date Mon, 23 Aug 2010 12:57:06 +0200
parents 177e3a7825e8
children 158a13a48d48
comparison
equal deleted inserted replaced
52:7a977f8f433a 53:3d460c1274ee
4 SCREEN = (800, 600) 4 SCREEN = (800, 600)
5 FREQ = 44100 # same as audio CD 5 FREQ = 44100 # same as audio CD
6 BITSIZE = -16 # unsigned 16 bit 6 BITSIZE = -16 # unsigned 16 bit
7 CHANNELS = 2 # 1 == mono, 2 == stereo 7 CHANNELS = 2 # 1 == mono, 2 == stereo
8 BUFFER = 1024 # audio buffer size in no. of samples 8 BUFFER = 1024 # audio buffer size in no. of samples
9
10 BUTTON_SIZE = 50