diff options
author | nokoe <nokoe@mailbox.org> | 2024-07-01 14:50:02 +0200 |
---|---|---|
committer | nokoe <nokoe@mailbox.org> | 2024-07-01 14:50:02 +0200 |
commit | 5053a14f549649415bcfd0ec9e30fe09a871b6f6 (patch) | |
tree | ead12d52e76299cd477c3a1f55c213bafa6d7f30 /client/map/items/item.gd | |
parent | 83e3cf4b1a24717f7965acb352ef1ade0eaa7203 (diff) | |
download | hurrycurry-5053a14f549649415bcfd0ec9e30fe09a871b6f6.tar hurrycurry-5053a14f549649415bcfd0ec9e30fe09a871b6f6.tar.bz2 hurrycurry-5053a14f549649415bcfd0ec9e30fe09a871b6f6.tar.zst |
add item put/take methods for additional effects
Diffstat (limited to 'client/map/items/item.gd')
-rw-r--r-- | client/map/items/item.gd | 6 |
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.) |