summaryrefslogtreecommitdiff
path: root/tests/pke-test-dummy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pke-test-dummy.cpp')
-rw-r--r--tests/pke-test-dummy.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/pke-test-dummy.cpp b/tests/pke-test-dummy.cpp
index 0caa865..8fdc146 100644
--- a/tests/pke-test-dummy.cpp
+++ b/tests/pke-test-dummy.cpp
@@ -5,11 +5,13 @@
#include "camera.hpp"
#include "ecs.hpp"
#include "physics.hpp"
+#include "pk.h"
#include "scene.hpp"
#include "static-ui.hpp"
#include "thread-pool.hpp"
int pke_test_dummy_001() {
+ pk_ev_init(nullptr);
Physics_Init();
PkeThreads_Init();
AM_Init();
@@ -34,6 +36,7 @@ int pke_test_dummy_001() {
AM_Teardown();
PkeThreads_Teardown();
Physics_Teardown();
+ pk_ev_teardown();
return 0;
}