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; //ww w. j ava 2 s . co m import com.artemis.Component; import com.sgtcodfish.mobiusListing.Item; /** * <p> * Indicates that an entity can be collected by another and added to an * inventory. * </p> * * @author Ashley Davis (SgtCoDFish) */ public class Collectable implements Component { public Item item = null; @Override public void reset() { item = null; } }