/* * ------------------------------------------------------------------------ * Description: This class handles the start game button * Author: Eli Simpkins-Simmonds * ------------------------------------------------------------------------ */ using UnityEngine; public class StartGame : MonoBehaviour { public GameObject startScreenPanel; public void StartGameButton() { startScreenPanel.SetActive(false); } }