character is now running on screen

This commit is contained in:
Your Name
2025-07-20 18:54:24 +04:00
parent e9761aa162
commit 8881f442bb
8 changed files with 576 additions and 0 deletions

10
scenes/game_scene.gd Normal file
View File

@@ -0,0 +1,10 @@
extends Node
signal open_game
func _ready() -> void:
print("Game scene ready")
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta: float) -> void:
pass