Files
kicking-high/proto3/godot/system/quest_objective.gd
Segey Lapin 7706ba0edf Some fixes
Disabled feet IK, proper handling of exit room
Added quest system from proto2
2020-04-14 16:48:43 +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