mirror of
https://github.com/hobbesjaap/wellbeingapp.git
synced 2024-11-08 19:52:59 +00:00
25 lines
471 B
GDScript
25 lines
471 B
GDScript
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
|
|
|
|
var web_release_version = 0
|
|
var current_version = "0.0.8"
|
|
|
|
func check_update():
|
|
pass
|
|
|
|
func _ready():
|
|
pass
|
|
|
|
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
|
#func _process(delta):
|
|
# pass
|