Skip to content

Instantly share code, notes, and snippets.

@ryanwarsaw
Last active September 8, 2015 12:09
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 ryanwarsaw/c49debc21b18696e0339 to your computer and use it in GitHub Desktop.
Save ryanwarsaw/c49debc21b18696e0339 to your computer and use it in GitHub Desktop.
private final Overcast overcast = new OvercastStats();
public void someEvent() {
overcast.getPlayerByNameAsync("rockymma", new Callback<OvercastPlayer>() {
@Override
public void call(OvercastPlayer result) {
// Do something with the result.
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment