diff options
author | dusoleil <howcansocksbereal@gmail.com> | 2022-09-20 19:08:43 -0400 |
---|---|---|
committer | dusoleil <howcansocksbereal@gmail.com> | 2022-09-20 19:08:43 -0400 |
commit | e726067048dc8771d83ec490767f3ca5ea063219 (patch) | |
tree | 103aa096b3ee6e20d716026070f78a5d89c51d62 /world/monuments/lighthouse/lighthouseMonument.gd | |
parent | 743c526b46a1d1c6e0b7ef8b9b0f10b22ee43ab3 (diff) | |
download | game_jam49-e726067048dc8771d83ec490767f3ca5ea063219.tar.gz game_jam49-e726067048dc8771d83ec490767f3ca5ea063219.zip |
Incorporate new assets into the world gen
Diffstat (limited to 'world/monuments/lighthouse/lighthouseMonument.gd')
-rw-r--r-- | world/monuments/lighthouse/lighthouseMonument.gd | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/world/monuments/lighthouse/lighthouseMonument.gd b/world/monuments/lighthouse/lighthouseMonument.gd new file mode 100644 index 0000000..ad30893 --- /dev/null +++ b/world/monuments/lighthouse/lighthouseMonument.gd @@ -0,0 +1,7 @@ +extends Monument +class_name lighthouseMonument + +var packed_scene = preload("res://world/monuments/lighthouse/lighthouse.tscn") + +func _init(xform:Transform).(xform,Vector2(300.0,300.0),packed_scene): + pass |