Add more sounds internally

This commit is contained in:
Modnark
2022-10-11 22:34:36 -04:00
parent af5c31d5d0
commit d32b0ea4e4
10 changed files with 64 additions and 10 deletions

View File

@@ -6,6 +6,7 @@ class AudioPlayer
public:
AudioPlayer(void);
~AudioPlayer(void);
static void playSound(std::string);
static void init();
static void playSound(std::string);
};

View File

@@ -35,7 +35,9 @@ namespace Enum
namespace Sound
{
enum Value {
NoSound = 0, Victory = 1, Boing = 2
NoSound = 0, Victory = 1, Boing = 2, Bomb = 3,
Ping = 4, Break = 5, Splat = 6, Swoosh = 7,
Snap = 8, Page = 9
};
}
}