TheKingsRace/Assets/Scripts/UI/Title/toCredits.cs
Evan Nydahl 55d2bb9fe1 -added a button to credit scene to title screen
-created credit screen
2021-12-13 13:53:31 -06:00

12 lines
236 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
public class toCredits : MonoBehaviour
{
public void ToCredits(){
SceneManager.LoadScene("Credits");
}
}