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 w w w.ja va2 s .c o m*/ import com.badlogic.ashley.core.Component; public class LevelComponent extends Component { public int level = 1; public int healthOnLevel = 1; public int damageOnLevel = 1; public int experiencePoints = 100; // Level 1 public int nextLevelExp = (level+1) * (level+1) * 100; }