UnitySocketIO
UnitySocketIO copied to clipboard
Fix example code for SocketOpened()
private void SocketOpened(object sender, MessageEventArgs e)
should be
private void SocketOpened(object sender, EventArgs e)
But EventArgs doesn't carry the message type class, but it won't compile without EventArgs. . .
A minor bug, I think, but still significant.