added scene

This commit is contained in:
DerTyp187
2021-11-26 08:56:05 +01:00
parent 62e35c6b7d
commit f238d16f8e
17 changed files with 4849 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
using Mirror;
using UnityEngine;
public class MenuStartHost : MonoBehaviour
{
public void StartHost()
{
Debug.Log("[MENU] Starting host...");
NetworkManager.singleton.StartHost();
}
}