Skip to content

Commit

Permalink
GH-614 Mark several classes as internal
Browse files Browse the repository at this point in the history
  • Loading branch information
Naros committed Jul 29, 2024
1 parent b416fcd commit c0fd677
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/editor/register_editor_types.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,20 +58,20 @@
void register_editor_types()
{
// Plugin bits
ORCHESTRATOR_REGISTER_CLASS(OrchestratorPlugin)
ORCHESTRATOR_REGISTER_INTERNAL_CLASS(OrchestratorPlugin)
#if GODOT_VERSION >= 0x040300
ORCHESTRATOR_REGISTER_CLASS(OrchestratorEditorDebuggerPlugin)
ORCHESTRATOR_REGISTER_INTERNAL_CLASS(OrchestratorEditorDebuggerPlugin)
#endif
ORCHESTRATOR_REGISTER_CLASS(OrchestratorEditorExportPlugin)
ORCHESTRATOR_REGISTER_CLASS(OrchestratorEditorInspectorPluginFunction)
ORCHESTRATOR_REGISTER_CLASS(OrchestratorEditorInspectorPluginSignal)
ORCHESTRATOR_REGISTER_CLASS(OrchestratorEditorInspectorPluginVariable)
ORCHESTRATOR_REGISTER_CLASS(OrchestratorPropertyInfoContainerEditorProperty)
ORCHESTRATOR_REGISTER_CLASS(OrchestratorEditorPropertyVariableClassification)
ORCHESTRATOR_REGISTER_CLASS(OrchestratorThemeCache)
ORCHESTRATOR_REGISTER_CLASS(OrchestratorEditorCache)
ORCHESTRATOR_REGISTER_INTERNAL_CLASS(OrchestratorEditorExportPlugin)
ORCHESTRATOR_REGISTER_INTERNAL_CLASS(OrchestratorEditorInspectorPluginFunction)
ORCHESTRATOR_REGISTER_INTERNAL_CLASS(OrchestratorEditorInspectorPluginSignal)
ORCHESTRATOR_REGISTER_INTERNAL_CLASS(OrchestratorEditorInspectorPluginVariable)
ORCHESTRATOR_REGISTER_INTERNAL_CLASS(OrchestratorThemeCache)
ORCHESTRATOR_REGISTER_INTERNAL_CLASS(OrchestratorEditorCache)

// Editor bits
ORCHESTRATOR_REGISTER_INTERNAL_CLASS(OrchestratorPropertyInfoContainerEditorProperty)
ORCHESTRATOR_REGISTER_INTERNAL_CLASS(OrchestratorEditorPropertyVariableClassification)
ORCHESTRATOR_REGISTER_INTERNAL_CLASS(OrchestratorFileDialog)
ORCHESTRATOR_REGISTER_INTERNAL_CLASS(OrchestratorEditorSearchDialogItem)
ORCHESTRATOR_REGISTER_INTERNAL_CLASS(OrchestratorEditorSearchDialog)
Expand Down

0 comments on commit c0fd677

Please sign in to comment.