ServerLink.ConnectToServer C# (CSharp) Method

ConnectToServer() public method

Attempts to join the GGM with the given IP
public ConnectToServer ( ) : void
return void
    public void ConnectToServer()
    {
        Debug.Log("Connected = " + connector.Connect(gameManagerIP, System.Environment.MachineName));
        if (connector.res != "")
        {
            Debug.Log(connector.res);
        }
    }
}