Removed unused lines

This commit is contained in:
2024-09-03 15:29:01 -05:00
parent 52fc81eaea
commit 8daae03ab0
2 changed files with 0 additions and 2 deletions

View File

@ -14,4 +14,3 @@ func _physics_process(delta):
prompt.text = collider.prompt_message
if Input.is_action_just_pressed("interact"):
collider.interact(owner)

View File

@ -2,7 +2,6 @@ class_name Interactable
extends StaticBody3D
@export var prompt_message:String = "Press e"
@export var prompt_key:String
func interact(player):
pass