Bees return nectar, UI stuff

This commit is contained in:
Dan Baker 2024-05-04 15:13:59 +01:00
parent 76e7ec7ec7
commit 5865778c77
12 changed files with 175 additions and 17 deletions

10
utility/game_state.gd Normal file
View file

@ -0,0 +1,10 @@
class_name GameStateManager extends Node
var gathered_nectar : int = 0
func _ready():
Log.pr("GameStateManager ready")
func add_nectar():
gathered_nectar += 1
Log.pr("Nectar gathered", gathered_nectar)