aboutsummaryrefslogtreecommitdiff
path: root/audio.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'audio.cpp')
-rw-r--r--audio.cpp25
1 files changed, 25 insertions, 0 deletions
diff --git a/audio.cpp b/audio.cpp
new file mode 100644
index 0000000..9601aa6
--- /dev/null
+++ b/audio.cpp
@@ -0,0 +1,25 @@
+#include "stdafx.h"
+
+/*I should add the sound here.*/
+void Audio::load_clip(const char *soundclip)
+{
+ std::cout << ">>> Added Sound: " << soundclip << "\n";
+}
+
+/*Look for and play the sound.*/
+void Audio::play_sfx(const char *soundclip)
+{
+ std::cout << ">>> Played Sound: " << soundclip << "\n";
+}
+
+/*Look for and play bgm*/
+void Audio::play_bgm(const char *soundclip)
+{
+ std::cout << ">>> Beginning Playback of: " << soundclip << "\n";
+}
+
+/*Look for and stop bgm*/
+void Audio::stop_bgm(const char *soundclip)
+{
+ std::cout << ">>> Stopping Playback of: " << soundclip << "\n";
+} \ No newline at end of file