Initial commit: Godot idle game project setup with basic player movement

This commit is contained in:
MegaProxy 2025-08-06 21:52:35 +00:00
commit ef38f19f04
7 changed files with 130 additions and 0 deletions

7
scripts/Main.gd Normal file
View file

@ -0,0 +1,7 @@
extends Node2D
func _ready():
print("Game started!")
func _process(_delta):
pass