home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyc (Python 1.5)
-
- import string
- import sys
- import environ
- soundNameDict = { }
- soundNamesFile = open('./dagame/common/soundnums.h', 'r')
- soundNamesFile.readlines()
- soundNamesFile.readlines()
- for line in soundNamesFile.readlines():
- pass
-
- soundNamesFile.close()
-
- def getSoundID(name):
- return soundNameDict[name]
-
-
- def playSound(name):
- id = getSoundID(name)
- environ.sPlaySound(id)
-
-