added user action

This commit is contained in:
Nikolai Fesenko
2025-08-17 16:21:34 +02:00
parent 06bca3f9d8
commit 5637c82eb7
12 changed files with 89 additions and 31 deletions

10
Scripts/Interactable.gd Normal file
View File

@@ -0,0 +1,10 @@
class_name Interactable
extends Node
var can_pick: bool
var can_store: bool
var stored_objects: Array
func action(person):
print("action!")