You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2026-01-06 19:41:11 +00:00
Improve compilation speed (forward declarations/includes cleanup)
This commit is contained in:
@@ -30,6 +30,10 @@
|
||||
|
||||
#include "dynamicfont_import_settings.h"
|
||||
|
||||
#include "editor/editor_file_dialog.h"
|
||||
#include "editor/editor_file_system.h"
|
||||
#include "editor/editor_inspector.h"
|
||||
#include "editor/editor_locale_dialog.h"
|
||||
#include "editor/editor_node.h"
|
||||
#include "editor/editor_scale.h"
|
||||
|
||||
|
||||
@@ -31,10 +31,6 @@
|
||||
#ifndef FONTDATA_IMPORT_SETTINGS_H
|
||||
#define FONTDATA_IMPORT_SETTINGS_H
|
||||
|
||||
#include "editor/editor_file_dialog.h"
|
||||
#include "editor/editor_inspector.h"
|
||||
#include "editor/editor_locale_dialog.h"
|
||||
|
||||
#include "editor/import/resource_importer_dynamicfont.h"
|
||||
|
||||
#include "scene/gui/dialogs.h"
|
||||
@@ -50,6 +46,9 @@
|
||||
#include "servers/text_server.h"
|
||||
|
||||
class DynamicFontImportSettingsData;
|
||||
class EditorFileDialog;
|
||||
class EditorInspector;
|
||||
class EditorLocaleDialog;
|
||||
|
||||
class DynamicFontImportSettings : public ConfirmationDialog {
|
||||
GDCLASS(DynamicFontImportSettings, ConfirmationDialog)
|
||||
|
||||
@@ -29,6 +29,7 @@
|
||||
/*************************************************************************/
|
||||
|
||||
#include "editor_import_plugin.h"
|
||||
|
||||
#include "core/object/script_language.h"
|
||||
|
||||
EditorImportPlugin::EditorImportPlugin() {
|
||||
|
||||
@@ -30,8 +30,7 @@
|
||||
|
||||
#include "resource_importer_layered_texture.h"
|
||||
|
||||
#include "resource_importer_texture.h"
|
||||
|
||||
#include "core/config/project_settings.h"
|
||||
#include "core/error/error_macros.h"
|
||||
#include "core/io/config_file.h"
|
||||
#include "core/io/image_loader.h"
|
||||
|
||||
@@ -30,6 +30,7 @@
|
||||
|
||||
#include "resource_importer_texture.h"
|
||||
|
||||
#include "core/config/project_settings.h"
|
||||
#include "core/io/config_file.h"
|
||||
#include "core/io/image_loader.h"
|
||||
#include "core/version.h"
|
||||
|
||||
@@ -29,9 +29,14 @@
|
||||
/*************************************************************************/
|
||||
|
||||
#include "scene_import_settings.h"
|
||||
|
||||
#include "editor/editor_file_dialog.h"
|
||||
#include "editor/editor_file_system.h"
|
||||
#include "editor/editor_inspector.h"
|
||||
#include "editor/editor_node.h"
|
||||
#include "editor/editor_scale.h"
|
||||
#include "scene/3d/importer_mesh_instance_3d.h"
|
||||
#include "scene/animation/animation_player.h"
|
||||
#include "scene/resources/importer_mesh.h"
|
||||
#include "scene/resources/surface_tool.h"
|
||||
|
||||
|
||||
@@ -31,8 +31,6 @@
|
||||
#ifndef SCENEIMPORTSETTINGS_H
|
||||
#define SCENEIMPORTSETTINGS_H
|
||||
|
||||
#include "editor/editor_file_dialog.h"
|
||||
#include "editor/editor_inspector.h"
|
||||
#include "editor/import/resource_importer_scene.h"
|
||||
#include "scene/3d/camera_3d.h"
|
||||
#include "scene/3d/light_3d.h"
|
||||
@@ -47,6 +45,8 @@
|
||||
#include "scene/gui/tree.h"
|
||||
#include "scene/resources/primitive_meshes.h"
|
||||
|
||||
class EditorFileDialog;
|
||||
class EditorInspector;
|
||||
class SceneImportSettingsData;
|
||||
|
||||
class SceneImportSettings : public ConfirmationDialog {
|
||||
|
||||
Reference in New Issue
Block a user