mirror of
https://github.com/hobbesjaap/wellbeingapp.git
synced 2024-11-08 19:52:59 +00:00
23 lines
467 B
GDScript
23 lines
467 B
GDScript
extends Node
|
|
|
|
|
|
# This variable lists the release number.
|
|
# This is "the number of releases".
|
|
# My aim is to check against a web file to see if
|
|
# there is a new version available and show a
|
|
# download button if there is.
|
|
|
|
var release_version = 1
|
|
var web_release_version = 0
|
|
var current_version = "Version 0.1"
|
|
|
|
func check_update():
|
|
pass
|
|
|
|
func _ready():
|
|
pass
|
|
|
|
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
|
#func _process(delta):
|
|
# pass
|