TO SQUASH: Changes.

This commit is contained in:
2026-07-18 23:30:43 -04:00
parent e0c95e192b
commit c7bc76ce98
32 changed files with 3123 additions and 192 deletions
+21
View File
@@ -0,0 +1,21 @@
using UnityEngine;
public class MainMenu : MonoBehaviour
{
// Start is called once before the first execution of Update after the MonoBehaviour is created
void Start()
{
}
void Awake()
{
GameSetup.InitializeGame();
}
// Update is called once per frame
void Update()
{
}
}