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 ww . jav a 2s .c o m*/ import java.util.ArrayList; import com.artemis.Component; import com.sgtcodfish.mobiusListing.Item; /** * @author Ashley Davis (SgtCoDFish) */ public class Inventory implements Component { public ArrayList<Item> inventoryList = new ArrayList<Item>(); @Override public void reset() { inventoryList = new ArrayList<Item>(); } }