Back to project page linevslinerpg.
The source code is released under:
Apache License
If you think the Android project linevslinerpg 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.jmpmain.lvslrpg.particles; import android.graphics.Canvas; //from w w w .j a va 2 s . co m /** * Base class for a particle. */ public abstract class Particle { /** Should this particle be destroyed. */ public boolean destroy; public abstract void update(long time); public abstract void draw(Canvas canvas); }