This commit is contained in:
Michal 2022-05-13 16:23:52 +01:00 committed by GitHub
parent 99cfaa4793
commit 90cf5a6112
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
90 changed files with 17097 additions and 0 deletions

23
levelLoader.cs Normal file
View file

@ -0,0 +1,23 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
public class levelLoader : MonoBehaviour
{
public void NextLevel()
{
SceneManager.LoadScene("game");
}
void Start()
{
}
void Update()
{
}
}