Dress.java :  » Game » hey-apple » com » margenta » android » framework » node » object » Android Open Source

Android Open Source » Game » hey apple 
hey apple » com » margenta » android » framework » node » object » Dress.java
package com.margenta.android.framework.node.object;

import java.util.Vector;

public class Dress {
  
  public class Skin{
    String targetId;
    int srcId;
    
    public Skin(String targetId, int srcId){
      this.targetId = targetId;
      this.srcId = srcId;
    }
  }
  
  public Vector<Skin> vcSkins = new Vector<Skin>();
  
  public void addSkin(String targetId, int srcId){
    vcSkins.add(new Skin(targetId, srcId));
  }
}
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.