Back to project page Coloring-book.
The source code is released under:
Apache License
If you think the Android project Coloring-book 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.plattysoft.leonids.initializers; //from w w w . ja v a 2 s .co m import java.util.Random; import com.plattysoft.leonids.Particle; public interface ParticleInitializer { void initParticle(Particle p, Random r); }