view gamelib/constants.py @ 54:0abd45c58bd3

Remove some parts of gamescreen menu now that menu button is working.
author Simon Cross <simon@simonx>
date Mon, 23 Aug 2010 13:23:38 +0200
parents 3d460c1274ee
children 158a13a48d48
line wrap: on
line source

# Useful constants
# copyright boomslang team (see COPYRIGHT file for details)

SCREEN = (800, 600)
FREQ = 44100   # same as audio CD
BITSIZE = -16  # unsigned 16 bit
CHANNELS = 2   # 1 == mono, 2 == stereo
BUFFER = 1024  # audio buffer size in no. of samples

BUTTON_SIZE = 50