Untitled
using System.Collections; using System.Collections.Generic; using UnityEngine; using Planetary; public class ServerConnection : MonoBehaviour { PPMaster master; void Start() { master = GetComponent<PPMaster>(); //join server master.Join(); } // Update is called once per frame void Update() { } }
Leave a Comment