diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2024-03-19 14:29:48 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-03-20 08:18:03 +0100 |
commit | f3c46930b43707e57979f08c85d53974f688380d (patch) | |
tree | 0b0e363ffe91ba50b3381011fddad7aceacbc497 /editor/app.hpp | |
parent | 9629cfc4a97241a01654518dd7b8b2636e415866 (diff) |
pass dt to tests
Diffstat (limited to 'editor/app.hpp')
-rw-r--r-- | editor/app.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/app.hpp b/editor/app.hpp index a60d12bf..5d6723b3 100644 --- a/editor/app.hpp +++ b/editor/app.hpp @@ -171,8 +171,8 @@ private: [[nodiscard]] bool tests_handle_key(const key_event& e, bool is_down); [[nodiscard]] bool tests_handle_mouse_click(const mouse_button_event& e, bool is_down); [[nodiscard]] bool tests_handle_mouse_move(const mouse_move_event& e); - void tests_pre_update(); - void tests_post_update(); + void tests_pre_update(Ns dt); + void tests_post_update(Ns dt); void draw_tests_pane(float width); void draw_tests_overlay(); void tests_reset_mode(); |