view mamba/constants.py @ 11:447311ee028c

Remove relative import.
author Simon Cross <hodgestar@gmail.com>
date Sun, 11 Sep 2011 13:05:26 +0200
parents 6b9fa5e2fbc6
children 236de980209a
line wrap: on
line source

# Useful constants, as usual

SCREEN = (800, 600)

# Sound constants
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