Back to project page shapemergency.
The source code is released under:
GNU General Public License
If you think the Android project shapemergency 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.adsg0186.shapemergency.testgame1.blobs; //from www . j a v a2s. c o m import com.github.adsgray.gdxtry1.engine.accel.AccelIF; import com.github.adsgray.gdxtry1.engine.blob.BaseTextBlob; import com.github.adsgray.gdxtry1.engine.output.Renderer; import com.github.adsgray.gdxtry1.engine.output.Renderer.RenderConfigIF; import com.github.adsgray.gdxtry1.engine.position.PositionIF; import com.github.adsgray.gdxtry1.engine.velocity.VelocityIF; public class FlashMessage extends BaseTextBlob { public FlashMessage(PositionIF posin, VelocityIF velin, AccelIF accel, Renderer gdx, RenderConfigIF rc) { super(posin, velin, accel, gdx, rc); } }