mirror of
https://github.com/DerTyp7/defrain-shooter-unity.git
synced 2025-10-29 20:52:10 +01:00
12 lines
213 B
C#
12 lines
213 B
C#
using Mirror;
|
|
using UnityEngine;
|
|
|
|
public class MenuStartHost : MonoBehaviour
|
|
{
|
|
public void StartHost()
|
|
{
|
|
Debug.Log("[MENU] Starting host...");
|
|
NetworkManager.singleton.StartHost();
|
|
}
|
|
}
|