Reworked the AI Objectives

This commit is contained in:
Patrick_Pluto 2024-12-13 18:28:06 +01:00
parent 27964084ff
commit a6c9909f26
8 changed files with 31 additions and 11 deletions

View file

@ -0,0 +1,5 @@
class_name Hungry
extends Objective
func _ready() -> void:
displayed = "Hungry"

View file

@ -1,7 +1,8 @@
## SPDX-License-Identifier: GPL-3.0-or-later
## Copyright (c) 2024 interstellardevelopment.org
class_name Rest
class_name Objective
extends Node3D
var occupied: bool = false
var displayed: String