Add player movement

This commit is contained in:
Aslan 2026-01-24 12:34:02 -05:00
parent 269b962fef
commit 3f97e18615
27 changed files with 631 additions and 1 deletions

View file

@ -0,0 +1,9 @@
using Godot;
public partial class GameMenuController : Control
{
public void OnMainMenu()
{
GetTree().ChangeSceneToFile("res://scenes/main_menu.tscn");
}
}