diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2022-02-14 21:10:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-14 21:10:38 +0100 |
commit | d02db6306ebcb57296dece3e8d990ae188b39aad (patch) | |
tree | 880627af652df9f6061bbc8537c894c25ea57bd1 /modules/navigation/navigation_mesh_editor_plugin.h | |
parent | 620813283436386096c2e4e66dbe46a73e347571 (diff) | |
parent | cd1d7294d8d150788c8d9a19ca56038b864360a0 (diff) | |
download | redot-engine-d02db6306ebcb57296dece3e8d990ae188b39aad.tar.gz |
Merge pull request #58105 from trollodel/nuke_p_editor_editor_plugin
Diffstat (limited to 'modules/navigation/navigation_mesh_editor_plugin.h')
-rw-r--r-- | modules/navigation/navigation_mesh_editor_plugin.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/modules/navigation/navigation_mesh_editor_plugin.h b/modules/navigation/navigation_mesh_editor_plugin.h index 49ca28d3cf..0e4175eca0 100644 --- a/modules/navigation/navigation_mesh_editor_plugin.h +++ b/modules/navigation/navigation_mesh_editor_plugin.h @@ -35,7 +35,6 @@ #include "editor/editor_plugin.h" -class EditorNode; class NavigationRegion3D; class NavigationMeshEditor : public Control { @@ -70,7 +69,6 @@ class NavigationMeshEditorPlugin : public EditorPlugin { GDCLASS(NavigationMeshEditorPlugin, EditorPlugin); NavigationMeshEditor *navigation_mesh_editor; - EditorNode *editor; public: virtual String get_name() const override { return "NavigationMesh"; } @@ -79,7 +77,7 @@ public: virtual bool handles(Object *p_object) const override; virtual void make_visible(bool p_visible) override; - NavigationMeshEditorPlugin(EditorNode *p_node); + NavigationMeshEditorPlugin(); ~NavigationMeshEditorPlugin(); }; |