mirror of
https://github.com/Steffo99/hella-farm.git
synced 2024-11-22 16:14:22 +00:00
11 lines
151 B
GDScript3
11 lines
151 B
GDScript3
|
@icon("res://behaviours/priority.svg")
|
||
|
extends Node
|
||
|
class_name Priority
|
||
|
|
||
|
|
||
|
@export var priority: int = 0
|
||
|
|
||
|
|
||
|
func get_ref() -> Node:
|
||
|
return get_parent()
|