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 . j a v a2s . c o m import com.artemis.Component; /** * <p> * Indicates that a component can be interacted with in some way, responding to * player input. * </p> * * @author Ashley Davis (SgtCoDFish) */ public class Interactable implements Component { @Override public void reset() { } }