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