9 lines
177 B
GDScript
9 lines
177 B
GDScript
extends Resource
|
|
class_name Interaction
|
|
|
|
@export var name: String
|
|
@export var image: AtlasTexture
|
|
|
|
func interact_at(pos: Vector2i, root: Node) -> Array[Interaction]:
|
|
return []
|