mirror of
https://github.com/Leahnaya/TheKingsRace.git
synced 2026-05-07 23:13:08 -05:00
12 lines
236 B
C#
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");
|
|
}
|
|
}
|