about summary refs log tree commit diff homepage
path: root/brutalmaze/constants.py
diff options
context:
space:
mode:
authorNguyễn Gia Phong <vn.mcsinyx@gmail.com>2018-01-21 20:38:51 +0700
committerNguyễn Gia Phong <vn.mcsinyx@gmail.com>2018-01-21 20:43:21 +0700
commit7fe731137107b72704bc661d60a4da1f4674c9d9 (patch)
tree8b3f69ba297d7a0b108a3039938f5777d9130d70 /brutalmaze/constants.py
parent966951db60b60bacfd2c8559acc46c47f62f3295 (diff)
downloadbrutalmaze-7fe731137107b72704bc661d60a4da1f4674c9d9.tar.gz
Finish adding sound effects (#2) 0.3.0
Diffstat (limited to 'brutalmaze/constants.py')
-rw-r--r--brutalmaze/constants.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/brutalmaze/constants.py b/brutalmaze/constants.py
index 6c896e1..2f756e6 100644
--- a/brutalmaze/constants.py
+++ b/brutalmaze/constants.py
@@ -25,8 +25,11 @@ from pkg_resources import resource_filename
 
 ICON = image.load(resource_filename('brutalmaze', 'icon.png'))
 MUSIC = resource_filename('brutalmaze', 'soundfx/music.ogg')
+SFX_SLASH_ENEMY = resource_filename('brutalmaze', 'soundfx/slash-enemy.ogg')
+SFX_SLASH_HERO = resource_filename('brutalmaze', 'soundfx/slash-hero.ogg')
 SFX_SHOT_ENEMY = resource_filename('brutalmaze', 'soundfx/shot-enemy.ogg')
 SFX_SHOT_HERO = resource_filename('brutalmaze', 'soundfx/shot-hero.ogg')
+SFX_MISSED = resource_filename('brutalmaze', 'soundfx/missed.ogg')
 SFX_LOSE = resource_filename('brutalmaze', 'soundfx/lose.ogg')
 
 UP = (K_UP, K_w)