added new prefabs, added scene load manager

This commit is contained in:
2023-03-05 23:46:07 +02:00
parent 471fc5df93
commit 2227fb18b5
46 changed files with 6729 additions and 8873 deletions
+13
View File
@@ -0,0 +1,13 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
public class Startup : MonoBehaviour
{
// Start is called before the first frame update
private void Start()
{
SceneManager.LoadScene(1);
}
}