From 80d98470e98360a717fa8f104fa6f4d482db91b7 Mon Sep 17 00:00:00 2001 From: Stiffly Date: Wed, 9 Sep 2015 15:49:53 +0200 Subject: [PATCH] Skeleton for Sound system --- include/Core/Sound.h | 19 +++++++++++++++++++ src/game/Core/Sound.cpp | 9 +++++++++ 2 files changed, 28 insertions(+) create mode 100644 include/Core/Sound.h create mode 100644 src/game/Core/Sound.cpp diff --git a/include/Core/Sound.h b/include/Core/Sound.h new file mode 100644 index 0000000..c86a859 --- /dev/null +++ b/include/Core/Sound.h @@ -0,0 +1,19 @@ +// +// Created by Adam on 2015-09-09. +// + +#ifndef DAYDREAM_SOUND_H +#define DAYDREAM_SOUND_H + +namespace dd +{ +class Sound +{ +public: + void HelloWorld(); +private: + +}; +} + +#endif //DAYDREAM_SOUND_H diff --git a/src/game/Core/Sound.cpp b/src/game/Core/Sound.cpp new file mode 100644 index 0000000..4c6f0ce --- /dev/null +++ b/src/game/Core/Sound.cpp @@ -0,0 +1,9 @@ +// +// Created by Adam on 2015-09-09. +// +#include "Core/Sound.h" + +void dd::Sound::HelloWorld() +{ + std::cout << "Hej världen!" << std::endl; +}