Skip to content

Commit

Permalink
[licenses] Move licenses interface to correct location
Browse files Browse the repository at this point in the history
  • Loading branch information
IceflowRE committed Nov 11, 2024
1 parent 9a96291 commit b54523d
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion addons/licenses/internal/components_tree.gd
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
extends Tree

const Component := preload("res://addons/licenses/component.gd")
const LicensesInterface := preload("res://addons/licenses/internal/licenses_interface.gd")
const LicensesInterface := preload("res://addons/licenses/internal/plugin/licenses_interface.gd")
const Licenses := preload("res://addons/licenses/licenses.gd")

const _BTN_ID_REMOVE: int = 2
Expand Down
2 changes: 1 addition & 1 deletion addons/licenses/internal/licenses.gd
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const Component := preload("res://addons/licenses/component.gd")
const ComponentsTree := preload("res://addons/licenses/internal/components_tree.gd")
const ComponentDetailTree := preload("res://addons/licenses/internal/component_detail_tree.gd")
const Toolbar := preload("res://addons/licenses/internal/toolbar.gd")
const LicensesInterface := preload("res://addons/licenses/internal/licenses_interface.gd")
const LicensesInterface := preload("res://addons/licenses/internal/plugin/licenses_interface.gd")
# handler
const BaseHandler := preload("res://addons/licenses/internal/handler/base.gd")
const ObjectHandler := preload("res://addons/licenses/internal/handler/object.gd")
Expand Down
2 changes: 1 addition & 1 deletion addons/licenses/internal/licenses_dialog.gd
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
extends Window

const LicensesContainer := preload("res://addons/licenses/internal/licenses.gd")
const LicensesInterface := preload("res://addons/licenses/internal/licenses_interface.gd")
const LicensesInterface := preload("res://addons/licenses/internal/plugin/licenses_interface.gd")

@export var _licenses: LicensesContainer

Expand Down
2 changes: 1 addition & 1 deletion addons/licenses/internal/plugin/file_system_watcher.gd
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
extends RefCounted

const LicensesInterface := preload("res://addons/licenses/internal/licenses_interface.gd")
const LicensesInterface := preload("res://addons/licenses/internal/plugin/licenses_interface.gd")
const Component := preload("res://addons/licenses/component.gd")
const Licenses := preload("res://addons/licenses/licenses.gd")

Expand Down
3 changes: 1 addition & 2 deletions addons/licenses/plugin.gd
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,10 @@ const LicensesDialogScene: PackedScene = preload("res://addons/licenses/internal
const LicensesDialog := preload("res://addons/licenses/internal/licenses_dialog.gd")
const Licenses := preload("res://addons/licenses/licenses.gd")
const ExportPlugin := preload("res://addons/licenses/internal/plugin/export_plugin.gd")
const LicensesInterface := preload("res://addons/licenses/internal/licenses_interface.gd")
const LicensesInterface := preload("res://addons/licenses/internal/plugin/licenses_interface.gd")
const FileSystemWatcher := preload("res://addons/licenses/internal/plugin/file_system_watcher.gd")

var _export_plugin: ExportPlugin
var _licenses_dialog: Window
var _licenses_dialog: LicensesDialog
var _file_watcher: FileSystemWatcher

Expand Down

0 comments on commit b54523d

Please sign in to comment.