mirror of https://codeberg.org/topola/topola.git
fix(interactor/interaction): fix warnings about unused arguments
This commit is contained in:
parent
48efd5d3d9
commit
14287ca814
|
|
@ -77,11 +77,11 @@ impl GetObstacles 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!()
|
||||
}
|
||||
|
||||
fn navedge_debug_text(&self, navedge: (NavvertexIndex, NavvertexIndex)) -> Option<&str> {
|
||||
fn navedge_debug_text(&self, _navedge: (NavvertexIndex, NavvertexIndex)) -> Option<&str> {
|
||||
todo!()
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue