Started quest system implementation
This commit is contained in:
14
proto2/system/quest_objective.gd
Normal file
14
proto2/system/quest_objective.gd
Normal file
@@ -0,0 +1,14 @@
|
||||
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
|
||||
Reference in New Issue
Block a user