Files
kicking-high/proto2/system/quest_objective.gd
2019-07-24 02:50:55 +03:00

15 lines
228 B
GDScript

extends Reference
class_name QuestObjective
var _complete: bool = false
var _title: String
func _init(title: String):
_title = title
func is_complete():
return _complete
func update():
pass
func get_title():
return _title