aboutsummaryrefslogtreecommitdiff
path: root/modules/gdnative/gdnative_library_singleton_editor.h
diff options
context:
space:
mode:
authorgeequlim2017-12-15 22:35:16 +0800
committergeequlim2017-12-18 23:23:29 +0800
commit13bd5c22c698e5b36db9012d4d5a5fd14076dfdc (patch)
tree299d2f364eff19c86defb64eba38b626eb5e087a /modules/gdnative/gdnative_library_singleton_editor.h
parentb3a1bf324566af58ceedc918c83396cba97aeedb (diff)
downloadgodot-13bd5c22c698e5b36db9012d4d5a5fd14076dfdc.tar.gz
godot-13bd5c22c698e5b36db9012d4d5a5fd14076dfdc.tar.zst
godot-13bd5c22c698e5b36db9012d4d5a5fd14076dfdc.zip
Add plugin to edit GDNativeLibrary
Rename GDNativeLibraryEditor to GDNativeLibrarySingletonEditor
Diffstat (limited to '')
-rw-r--r--modules/gdnative/gdnative_library_singleton_editor.h (renamed from modules/gdnative/gd_native_library_editor.h)6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/gdnative/gd_native_library_editor.h b/modules/gdnative/gdnative_library_singleton_editor.h
index a11c4620d..ee1a32c5a 100644
--- a/modules/gdnative/gd_native_library_editor.h
+++ b/modules/gdnative/gdnative_library_singleton_editor.h
@@ -1,5 +1,5 @@
/*************************************************************************/
-/* gd_native_library_editor.h */
+/* gdnative_library_singleton_editor.h */
/*************************************************************************/
/* This file is part of: */
/* GODOT ENGINE */
@@ -34,7 +34,7 @@
#include "editor/editor_file_system.h"
#include "editor/project_settings_editor.h"
-class GDNativeLibraryEditor : public VBoxContainer {
+class GDNativeLibrarySingletonEditor : public VBoxContainer {
Tree *libraries;
bool updating;
@@ -48,7 +48,7 @@ protected:
static void _bind_methods();
public:
- GDNativeLibraryEditor();
+ GDNativeLibrarySingletonEditor();
};
#endif