TNServerInstance.Start(5127);
TNManager.Connect(ip + ":5127");
void OnNetworkConnect(bool success, string message)
{
connectionText.text = message;
TNManager.JoinChannel(1, "Game"); // Obviously this is not all that useful if the connection doesn't work out, but i'm lazy.
}