summaryrefslogtreecommitdiffstats
path: root/world/monuments/DockMonument.gd
diff options
context:
space:
mode:
Diffstat (limited to 'world/monuments/DockMonument.gd')
-rw-r--r--world/monuments/DockMonument.gd19
1 files changed, 0 insertions, 19 deletions
diff --git a/world/monuments/DockMonument.gd b/world/monuments/DockMonument.gd
deleted file mode 100644
index 2ac0c71..0000000
--- a/world/monuments/DockMonument.gd
+++ /dev/null
@@ -1,19 +0,0 @@
-extends Monument
-class_name DockMonument
-
-var packed_scene = preload("res://world/monuments/Dock.tscn")
-
-func _init(xform:Transform).(xform,packed_scene,_chunks(),_origin()):
- pass
-
-func _chunks():
- var chunk_size = ChunkLoader.world.chunk_size
- var c = {}
- var width = stepify(200.0,chunk_size)
- for x in range(-width,width+chunk_size,chunk_size):
- for y in range(-width,width+chunk_size,chunk_size):
- c[Vector2(x,y)] = true
- return c
-
-func _origin():
- return Vector2(0.0,0.0)