summaryrefslogtreecommitdiff
path: root/Scripts/GameLoop.gd
blob: ea5e1572377b8767e3c2cac5b173dd1962c33684 (plain)
1
2
3
4
5
6
7
8
9
10
11
extends Node
class_name GameLoop

@export var turns : int

# Called when the node enters the scene tree for the first time.
func _ready():
	GlobalVariables.gameloop = self

func _process(_delta):
	pass