aboutsummaryrefslogtreecommitdiff
path: root/src/test/AudioTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/AudioTest.cpp')
-rw-r--r--src/test/AudioTest.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/test/AudioTest.cpp b/src/test/AudioTest.cpp
index a9d5e6c..6e2706c 100644
--- a/src/test/AudioTest.cpp
+++ b/src/test/AudioTest.cpp
@@ -3,6 +3,7 @@
#include <crepe/ComponentManager.h>
#include <crepe/api/AudioSource.h>
+#include <crepe/api/GameObject.h>
using namespace std;
using namespace crepe;
@@ -16,6 +17,7 @@ public:
void SetUp() override {
auto & mgr = this->component_manager;
GameObject entity = mgr.new_object("name");
+ entity.add_component<AudioSource>("../mwe/audio/sfx1.wav");
}
};