diff options
Diffstat (limited to 'src/sliceitoff/game/explodeout.py')
-rw-r--r-- | src/sliceitoff/game/explodeout.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/sliceitoff/game/explodeout.py b/src/sliceitoff/game/explodeout.py index 34bd9fe..6cebec5 100644 --- a/src/sliceitoff/game/explodeout.py +++ b/src/sliceitoff/game/explodeout.py @@ -1,6 +1,7 @@ """ game.explodeout - For showing explogind effect and waiting for a key """ import pygame +from sliceitoff.sfx import sfx from .anykey import anykey class ExplodeOutGroup(pygame.sprite.Group): @@ -31,4 +32,5 @@ class ExplodeOutGroup(pygame.sprite.Group): def do_fadeout(self): """ Just kicks off exploding phase """ + sfx.play("glass") self.explode = True |