mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-20 10:56:50 +01:00
Relintai
8b18898609
`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
17 lines
479 B
C++
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() {
|
|
} |