Skip to content

Instantly share code, notes, and snippets.

@featalion
Last active August 29, 2015 14:20
Show Gist options
  • Save featalion/7f8fc48ae8814f3debbf to your computer and use it in GitHub Desktop.
Save featalion/7f8fc48ae8814f3debbf to your computer and use it in GitHub Desktop.
class AttMed {
private int attention = 0;
private int meditation = 0;
AttMed() {}
public []int toArray() {
return {this.attention, this.meditation};
}
}
public static int[] parseMsg(String msg) {
AttMed am = gson.fromJson(msg, AttMed.class);
return am.toArray();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment