void Start()
    {
        // Disable all canvases but title
        titleCanvas.SetActive(true);
        loadCanvas.SetActive(false);
        nameCanvas.SetActive(false);
        raceCanvas.SetActive(false);
        classCanvas.SetActive(false);
        shipCanvas.SetActive(false);
        confirmCanvas.SetActive(false);


        // If any saved games
        if (SaveLoadController.CheckForSaves())
        {
            //Enable load button
        }
    }