diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2017-08-26 18:21:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-26 18:21:08 +0200 |
commit | 2a1a1f05feadc8c9b2e6a3058940456b65c3ecdc (patch) | |
tree | de80d2ef7ab5b07e1e182e87199c16cc415c482c /editor/plugins/script_editor_plugin.cpp | |
parent | 3c5ce736e63c0db6b2f0b5e8fef1119da5529df2 (diff) | |
parent | 565600e8445a3073e4188a1a2bde1f47dd299c5a (diff) |
Merge pull request #10656 from akien-mga/cleanup-commented-out-code
Cleanup tons of obsolete commented out code
Diffstat (limited to 'editor/plugins/script_editor_plugin.cpp')
-rw-r--r-- | editor/plugins/script_editor_plugin.cpp | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/editor/plugins/script_editor_plugin.cpp b/editor/plugins/script_editor_plugin.cpp index a6db0f6e59..9b83d4e483 100644 --- a/editor/plugins/script_editor_plugin.cpp +++ b/editor/plugins/script_editor_plugin.cpp @@ -29,18 +29,19 @@ /*************************************************************************/ #include "script_editor_plugin.h" +#include "core/io/resource_loader.h" +#include "core/io/resource_saver.h" +#include "core/os/file_access.h" +#include "core/os/input.h" +#include "core/os/keyboard.h" +#include "core/os/os.h" +#include "core/project_settings.h" #include "editor/editor_node.h" #include "editor/editor_settings.h" +#include "editor/node_dock.h" #include "editor/script_editor_debugger.h" -#include "io/resource_loader.h" -#include "io/resource_saver.h" -#include "node_dock.h" -#include "os/file_access.h" -#include "os/input.h" -#include "os/keyboard.h" -#include "os/os.h" -#include "project_settings.h" #include "scene/main/viewport.h" + /*** SCRIPT EDITOR ****/ void ScriptEditorBase::_bind_methods() { |