about summary refs log tree commit diff stats
path: root/src/sounds.h
diff options
context:
space:
mode:
authorCharadon <dev@iotib.net>2022-06-02 13:35:28 -0400
committerCharadon <dev@iotib.net>2022-06-02 13:35:28 -0400
commit8d19dc629bb1638990f7f9268880d7a139678a8e (patch)
tree124b527e5e48fc8f441a1273565a60501bf47e19 /src/sounds.h
parente372341eb2d92ee7df6fcaf43f4dc2a27967e390 (diff)
downloadPong-C-8d19dc629bb1638990f7f9268880d7a139678a8e.tar.gz
Added music and almost done marathon mode.
Diffstat (limited to 'src/sounds.h')
-rw-r--r--src/sounds.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/sounds.h b/src/sounds.h
index 0418c9c..5a87cb1 100644
--- a/src/sounds.h
+++ b/src/sounds.h
@@ -1,10 +1,12 @@
 #ifndef SOUNDS_H
 #define SOUNDS_H
-
+#include "pong.h"
 const int SOUND_BOUNCE = 0;
 const int MUSIC_DEFEAT = 1;
 const int MUSIC_VICTORY = 2;
 const int MUSIC_TITLE = 3;
+const int SOUND_PLAYER_SCORE = 4;
+const int SOUND_ENEMY_SCORE = 5;
 const int STOP_ALL_SOUNDS = 99;
 
 #endif