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.modifiers; //from w w w. j a v a 2 s . com import com.plattysoft.leonids.Particle; public interface ParticleModifier { /** * modifies the specific value of a particle given the current miliseconds * @param particle * @param miliseconds */ void apply(Particle particle, long miliseconds); }