mirror of
https://github.com/zoriya/ProtectFromTwitch.git
synced 2025-12-06 06:36:30 +00:00
13 lines
247 B
C#
13 lines
247 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.SceneManagement;
|
|
|
|
public class LobbyManager : MonoBehaviour
|
|
{
|
|
public void PlayWithoutTwitch()
|
|
{
|
|
SceneManager.LoadScene(2);
|
|
}
|
|
}
|