Bees return nectar, UI stuff
This commit is contained in:
parent
76e7ec7ec7
commit
5865778c77
12 changed files with 175 additions and 17 deletions
10
utility/game_state.gd
Normal file
10
utility/game_state.gd
Normal 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)
|
||||
Loading…
Add table
Add a link
Reference in a new issue