You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-28 16:07:14 +00:00
Use forward-declarations in EditorPlugin where possible
This commit is contained in:
@@ -35,6 +35,7 @@
|
||||
#include "editor/editor_settings.h"
|
||||
#include "editor/editor_undo_redo_manager.h"
|
||||
#include "editor/inspector_dock.h"
|
||||
#include "editor/property_selector.h"
|
||||
#include "editor/scene_tree_editor.h"
|
||||
#include "modules/multiplayer/multiplayer_synchronizer.h"
|
||||
#include "scene/gui/dialogs.h"
|
||||
|
||||
@@ -32,17 +32,17 @@
|
||||
#define REPLICATION_EDITOR_PLUGIN_H
|
||||
|
||||
#include "editor/editor_plugin.h"
|
||||
|
||||
#include "editor/editor_spin_slider.h"
|
||||
#include "editor/property_selector.h"
|
||||
|
||||
#include "../scene_replication_config.h"
|
||||
#include "modules/multiplayer/scene_replication_config.h"
|
||||
#include "scene/gui/box_container.h"
|
||||
|
||||
class ConfirmationDialog;
|
||||
class MultiplayerSynchronizer;
|
||||
class SceneTreeDialog;
|
||||
class AcceptDialog;
|
||||
class LineEdit;
|
||||
class Tree;
|
||||
class TreeItem;
|
||||
class PropertySelector;
|
||||
class SceneTreeDialog;
|
||||
|
||||
class ReplicationEditor : public VBoxContainer {
|
||||
GDCLASS(ReplicationEditor, VBoxContainer);
|
||||
|
||||
Reference in New Issue
Block a user