Add and update name convention
Some checks failed
Some checks failed
This commit is contained in:
11
scenes/game/gameplays/ClickomaniaGameplay.gd
Normal file
11
scenes/game/gameplays/ClickomaniaGameplay.gd
Normal file
@@ -0,0 +1,11 @@
|
||||
extends Node2D
|
||||
|
||||
signal score_changed(points: int)
|
||||
|
||||
|
||||
func _ready():
|
||||
DebugManager.log_info("Clickomania gameplay loaded", "Clickomania")
|
||||
# Example: Add some score after a few seconds to test the system
|
||||
await get_tree().create_timer(2.0).timeout
|
||||
score_changed.emit(100)
|
||||
DebugManager.log_info("Clickomania awarded 100 points", "Clickomania")
|
||||
Reference in New Issue
Block a user