Back to project page mobius.
The source code is released under:
MIT License
If you think the Android project mobius 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.sgtcodfish.mobiusListing.components; /* w w w.j a va2 s.c om*/ import com.artemis.Component; /** * @author Ashley Davis (SgtCoDFish) */ public class MobiusSprite implements Component { public boolean mirrored = false; public float spriteWidth = 0.0f; public float spriteHeight = 0.0f; @Override public void reset() { spriteWidth = 0.0f; spriteHeight = 0.0f; mirrored = false; } }