the-crypt/Player/PlayerVariables.gd
2020-07-21 17:49:04 -05:00

16 lines
219 B
GDScript

extends Node
var position: Vector2 = Vector2()
var health = null
var energy = null
var unlocked: Array = []
var current_scene: String
func respawn():
health = null
energy = null
func reset_magic():
unlocked = []