view gamelib/constants.py @ 26:0a68d137f509

Initial inventory palette thing.
author Jeremy Thurgood <firxen@gmail.com>
date Sun, 22 Aug 2010 18:38:56 +0200
parents 177e3a7825e8
children 3d460c1274ee
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