aboutsummaryrefslogtreecommitdiff
path: root/client/map
diff options
context:
space:
mode:
Diffstat (limited to 'client/map')
-rw-r--r--client/map/items/item.gd6
1 files changed, 6 insertions, 0 deletions
diff --git a/client/map/items/item.gd b/client/map/items/item.gd
index cd8fd75e..688308fe 100644
--- a/client/map/items/item.gd
+++ b/client/map/items/item.gd
@@ -42,5 +42,11 @@ func progress(p: float, warn: bool):
func finish(_warn: bool):
progress_instance.visible = false
+func take():
+ pass
+
+func put():
+ pass
+
static func base_position() -> Vector3:
return Vector3(0., 0., 0.)