ItemAttr.java :  » App » android-app-examples » org » ssg » android » game » herogame » Android Open Source

Android Open Source » App » android app examples 
android app examples » org » ssg » android » game » herogame » ItemAttr.java
package org.ssg.android.game.herogame;

public class ItemAttr {
  public int category;
  public int att, def, hp;
  
  public void copyItemAttr(ItemAttr attr) {
    category = attr.category;
    att = attr.att;
    def = attr.def;
    hp = attr.hp;
  }
}

java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.