diff options
author | Charadon <dev@iotib.net> | 2022-05-30 21:07:45 -0400 |
---|---|---|
committer | Charadon <dev@iotib.net> | 2022-05-30 21:07:45 -0400 |
commit | b1de6008bdfbd5bdeb62d2d3dad953019555556b (patch) | |
tree | f3ec65de21ef7294f53b0114616ccaca04bb4415 /src/sounds.h | |
download | Pong-C-b1de6008bdfbd5bdeb62d2d3dad953019555556b.tar.gz |
Initial Commit
Diffstat (limited to 'src/sounds.h')
-rw-r--r-- | src/sounds.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/sounds.h b/src/sounds.h new file mode 100644 index 0000000..75a2455 --- /dev/null +++ b/src/sounds.h @@ -0,0 +1,10 @@ +#ifndef SOUNDS_H +#define SOUNDS_H + +const int SOUND_BOUNCE = 0; +const int MUSIC_DEFEAT = 1; +const int MUSIC_VICTORY = 2; +const int MUSIC_TITLE = 3; +const int STOP_ALL_SOUNDS = 99; + +#endif \ No newline at end of file |