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; //from w w w . ja v a2s.c o m import com.artemis.Component; import com.artemis.Entity; import com.sgtcodfish.mobiusListing.player.HumanoidAnimationState; /** * Indicates that the current {@link Entity} has a player state attached. * * @author Ashley Davis (SgtCoDFish) */ public class PlayerState implements Component { public HumanoidAnimationState state = HumanoidAnimationState.STANDING; public PlayerState() { reset(); } @Override public void reset() { this.state = HumanoidAnimationState.STANDING; } }