pandemonium_engine/modules/navigation_dummy/dummy_navigation_server.cpp
Relintai 8b18898609 Backported from godot4: Rework const on NavigationServer methods
`const` is used on all methods, even when they cause modification of the server.  This reworks the methods of the server to only use `const` on method that don't change the state of the server.
- DarkKilauea
a0715b30f9
2023-06-09 22:03:42 +02:00

17 lines
479 B
C++

#include "dummy_navigation_server.h"
#include "scene/resources/navigation_mesh.h"
void DummyNavigationServer::region_set_navmesh(RID p_region, Ref<NavigationMesh> p_nav_mesh) {
}
NavigationUtilities::PathQueryResult DummyNavigationServer::_query_path(const NavigationUtilities::PathQueryParameters &p_parameters) const {
return NavigationUtilities::PathQueryResult();
}
DummyNavigationServer::DummyNavigationServer() {
}
DummyNavigationServer::~DummyNavigationServer() {
}