mirror of
https://github.com/Relintai/broken_seals.git
synced 2024-11-13 20:47:19 +01:00
13 lines
158 B
GDScript3
13 lines
158 B
GDScript3
|
tool
|
||
|
extends PanelContainer
|
||
|
|
||
|
var edited_world
|
||
|
|
||
|
func refresh() -> void:
|
||
|
pass
|
||
|
|
||
|
func set_wgworld(wgw : WorldGenWorld) -> void:
|
||
|
edited_world = wgw
|
||
|
|
||
|
refresh()
|