diff options
| author | Jonathan Bradley <jcb@pikum.xyz> | 2025-07-24 11:02:42 -0400 |
|---|---|---|
| committer | Jonathan Bradley <jcb@pikum.xyz> | 2025-07-24 11:02:42 -0400 |
| commit | 5e341340de5259acdb119866dc6819a81ed0ca84 (patch) | |
| tree | e54360445b78607ea2d82dedc6ecbeffcbad6d45 /tests/pke-test-dummy.cpp | |
| parent | 7d3b7f981998fdeb5375dff70f222821b0cdfc3d (diff) | |
pke: pk.h breaking changes in test suite
Diffstat (limited to 'tests/pke-test-dummy.cpp')
| -rw-r--r-- | tests/pke-test-dummy.cpp | 3 |
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; } |
