Add more efficient sound loading
pysole is a wrapper for simulating C# console applications.
Status: Beta
Brought to you by:
treestain
Originally created by: TreeStain
Currently the beep sound loading is done in the call to beep in the window.py class.
def beep(self): # Load self.beep_sound = pygame.mixer.Sound(beep_sound) # Play self.beep_sound.play()
However it would be better if this could be done in the init function. The config would need to be taken from the console class and fed into the window class init.