the-crypt/Player/PlayerVariables.gd
2020-07-21 23:39:14 -05:00

15 lines
218 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 = []