diff options
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) |