wellbeingapp/godot/program_values.gd

25 lines
471 B
GDScript3
Raw Normal View History

2022-08-07 01:08:10 +00:00
extends Node
# This variable lists the release number.
# This is "the number of releases".
var release_version = 1
# The var web_release_version is pulled from GitHub
# when the update button is checked. A higher value means
# an update is available
2022-08-08 08:53:39 +00:00
var web_release_version = 0
var current_version = "0.0.8"
func check_update():
pass
2022-08-07 01:08:10 +00:00
func _ready():
2022-08-08 06:52:49 +00:00
pass
2022-08-08 08:53:39 +00:00
2022-08-07 01:08:10 +00:00
# Called every frame. 'delta' is the elapsed time since the previous frame.
#func _process(delta):
# pass