diff options
author | Charadon <dev@iotib.net> | 2022-06-02 13:35:28 -0400 |
---|---|---|
committer | Charadon <dev@iotib.net> | 2022-06-02 13:35:28 -0400 |
commit | 8d19dc629bb1638990f7f9268880d7a139678a8e (patch) | |
tree | 124b527e5e48fc8f441a1273565a60501bf47e19 /src/pong.h | |
parent | e372341eb2d92ee7df6fcaf43f4dc2a27967e390 (diff) | |
download | Pong-C-8d19dc629bb1638990f7f9268880d7a139678a8e.tar.gz |
Added music and almost done marathon mode.
Diffstat (limited to 'src/pong.h')
-rw-r--r-- | src/pong.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/pong.h b/src/pong.h index 26ec9c2..8fb51c5 100644 --- a/src/pong.h +++ b/src/pong.h @@ -40,6 +40,7 @@ void ball(Rectangle *Player, Rectangle *Enemy, struct Balls *Ball, int *PlayerSc bool play_audio(int SoundEffect); int title_screen(); void versus_main(); +void marathon_main(); //Sounds extern const int SOUND_BOUNCE; @@ -47,5 +48,7 @@ extern const int MUSIC_DEFEAT; extern const int MUSIC_VICTORY; extern const int MUSIC_TITLE; extern const int STOP_ALL_SOUNDS; +extern const int SOUND_PLAYER_SCORE; +extern const int SOUND_ENEMY_SCORE; #endif |