Back to project page Ready-Set-Rogue.
The source code is released under:
GNU General Public License
If you think the Android project Ready-Set-Rogue 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.warsheep.scamp.components; /*from www.j av a 2 s . co m*/ import com.badlogic.ashley.core.Component; import java.util.Arrays; import java.util.List; public class FactionComponent extends Component { public List<Faction> factions = Arrays.asList(Faction.EVIL); public enum Faction { GOOD, EVIL, NEUTRAL } }