Back to project page abc-simple.
The source code is released under:
GNU General Public License
If you think the Android project abc-simple 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.johnnycarlos.abc_simple; /* w ww . ja v a2 s. c o m*/ public class SoundImage { public int poolNumber; public int imageNumber; public SoundImage(int s, int i){ poolNumber = s; imageNumber = i; } }