Skip to content

Instantly share code, notes, and snippets.

@dekros987
Created February 22, 2017 14:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dekros987/89d22c4d70958bd21e8a4f37bda8b43d to your computer and use it in GitHub Desktop.
Save dekros987/89d22c4d70958bd21e8a4f37bda8b43d to your computer and use it in GitHub Desktop.
System.out.println("Start");
getCore().getApi().addTS3Listeners(new TS3EventAdapter() {
@Override
public void onTextMessage(TextMessageEvent e) {
}
@Override
public void onClientMoved(ClientMovedEvent e) {
System.out.println("MOVE");
}
@Override
public void onClientJoin(final ClientJoinEvent e) {
System.out.println("Join ????");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment