mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-06 11:05:53 +00:00
10 lines
235 B
GDScript
10 lines
235 B
GDScript
@tool
|
|
extends DialogicIndexer
|
|
|
|
|
|
func _get_events() -> Array:
|
|
return [this_folder.path_join('event_setting.gd')]
|
|
|
|
|
|
func _get_subsystems() -> Array:
|
|
return [{'name':'Settings', 'script':this_folder.path_join('subsystem_settings.gd')}]
|