mirror of
https://github.com/celisej567/forest.git
synced 2026-09-04 15:35:10 +03:00
19 lines
287 B
C#
19 lines
287 B
C#
using System.Collections;
|
|
using UnityEngine;
|
|
using UnityEngine.SceneManagement;
|
|
|
|
public class play : MonoBehaviour
|
|
{
|
|
|
|
public void Load()
|
|
{
|
|
StartCoroutine("load");
|
|
}
|
|
|
|
IEnumerable load()
|
|
{
|
|
SceneManager.LoadScene("game");
|
|
return null;
|
|
}
|
|
}
|