diff options
author | dusoleil <howcansocksbereal@gmail.com> | 2022-09-20 02:00:08 -0400 |
---|---|---|
committer | dusoleil <howcansocksbereal@gmail.com> | 2022-09-20 02:00:08 -0400 |
commit | 7e75beb7b1f3b1121961f8df36f0fee3cd41cb58 (patch) | |
tree | 297727d30a8cb5be309b47c1e8bfe41e0792888b /project.godot | |
parent | 51a0664a1c2265adddbf4c42d4eda747c8ea8aaf (diff) | |
download | godot_wildjam_49-7e75beb7b1f3b1121961f8df36f0fee3cd41cb58.tar.gz godot_wildjam_49-7e75beb7b1f3b1121961f8df36f0fee3cd41cb58.zip |
Add ability to add static monuments to the world
Diffstat (limited to 'project.godot')
-rw-r--r-- | project.godot | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/project.godot b/project.godot index 26f3e5b..67ac57f 100644 --- a/project.godot +++ b/project.godot @@ -9,12 +9,24 @@ config_version=4 _global_script_classes=[ { +"base": "Monument", +"class": "DockMonument", +"language": "GDScript", +"path": "res://world/monuments/DockMonument.gd" +}, { +"base": "Reference", +"class": "Monument", +"language": "GDScript", +"path": "res://world/monuments/Monument.gd" +}, { "base": "Resource", "class": "Wave", "language": "GDScript", "path": "res://water/Wave.gd" } ] _global_script_class_icons={ +"DockMonument": "", +"Monument": "", "Wave": "" } |