You've already forked Darklings-FightingGame
mirror of
https://github.com/izzy2lost/Darklings-FightingGame.git
synced 2026-03-10 11:35:19 -07:00
13 lines
225 B
C#
13 lines
225 B
C#
using UnityEngine;
|
|
using UnityEngine.SceneManagement;
|
|
|
|
|
|
public class SplashScreen : MonoBehaviour
|
|
{
|
|
public void GoToNextScene()
|
|
{
|
|
SceneManager.LoadScene(SceneManager.GetActiveScene().buildIndex + 1);
|
|
}
|
|
}
|
|
|