Skip to content

Instantly share code, notes, and snippets.

@BrentFarris
Last active August 29, 2015 14:13
Show Gist options
  • Save BrentFarris/b780456e589fc304e15d to your computer and use it in GitHub Desktop.
Save BrentFarris/b780456e589fc304e15d to your computer and use it in GitHub Desktop.
Forge Networking Sample: Registering Connected
// Note: 15937 is the port number of the socket you started the connection on
Networking.Sockets[15937].connected += MyMethod;
void MyMethod()
{
Debug.Log("Connection Established");
}
// Or you can in-line if you wish
Networking.Socket[15937].connected += delegate
{
Debug.Log("Connection Established");
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment