comparison gamelib/sound.py @ 123:3b293e3b8829

Add missing pygame import
author Neil Muller <neil@dip.sun.ac.za>
date Tue, 24 Aug 2010 17:47:13 +0200
parents 18ffaaaa27e7
children d2f94f42edf3
comparison
equal deleted inserted replaced
122:d2f84f22def0 123:3b293e3b8829
4 # a) work around an annoying bugs 4 # a) work around an annoying bugs
5 # b) add some missing functionality (disable_sound) 5 # b) add some missing functionality (disable_sound)
6 6
7 import os 7 import os
8 8
9 import pygame
9 from albow.resource import _resource_path, dummy_sound 10 from albow.resource import _resource_path, dummy_sound
10 11
11 sound_cache = {} 12 sound_cache = {}
12 13
13 def get_sound(*names): 14 def get_sound(*names):