Back to project page ChitChat.
The source code is released under:
MIT License
If you think the Android project ChitChat listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.shivamb7.chitchat.workers; /* w ww. j a v a2 s .co m*/ import com.shivamb7.chitchat.R; public class Level { public String title; public int icon; public String title2; public Level() { super(); } public Level(String title,int icon) { super(); this.icon = icon; this.title = title; } public Level(String title,String title2,int icon) { super(); this.icon=icon; this.title=title; this.title2=title2; } }