diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2024-03-01 23:23:30 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-03-02 05:09:57 +0100 |
commit | 05f3e721694249a71f46cef3c87e0156b00363ee (patch) | |
tree | 729a060a0a2ff47b011434f1dd18b6d3a23dff1b /editor | |
parent | 14188d4c05bb2724bb79ac7b6e3b549b686dbdd3 (diff) |
c
Diffstat (limited to 'editor')
-rw-r--r-- | editor/tests/pathfinding.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/editor/tests/pathfinding.cpp b/editor/tests/pathfinding.cpp index 8dfe1589..303277c6 100644 --- a/editor/tests/pathfinding.cpp +++ b/editor/tests/pathfinding.cpp @@ -97,20 +97,24 @@ step_s pf_test::get_next_step(point from, point to) bool pf_test::handle_key(app& a, const key_event& e, bool is_down) { + (void) a; (void)e; (void)is_down; return false; } bool pf_test::handle_mouse_click(app& a, const mouse_button_event& e, bool is_down) { + (void)a; (void)e; (void)is_down; return false; } void pf_test::draw_overlay(app& a) { + (void)a; } -void pf_test::draw_ui(app& a, float menu_bar_height) +void pf_test::draw_ui(app& a, float) { + (void)a; } void pf_test::update_pre(app& a) |