fix(interactor/interaction): fix warnings about unused arguments

This commit is contained in:
Ellen Emilia Anna Zscheile 2025-05-02 14:32:00 +02:00
parent 48efd5d3d9
commit 14287ca814
1 changed files with 2 additions and 2 deletions

View File

@ -77,11 +77,11 @@ impl GetObstacles for InteractionStepper {
} }
impl GetNavmeshDebugTexts for InteractionStepper { impl GetNavmeshDebugTexts for InteractionStepper {
fn navvertex_debug_text(&self, navvertex: NavvertexIndex) -> Option<&str> { fn navvertex_debug_text(&self, _navvertex: NavvertexIndex) -> Option<&str> {
todo!() todo!()
} }
fn navedge_debug_text(&self, navedge: (NavvertexIndex, NavvertexIndex)) -> Option<&str> { fn navedge_debug_text(&self, _navedge: (NavvertexIndex, NavvertexIndex)) -> Option<&str> {
todo!() todo!()
} }
} }