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; +}