drop.java :  » Game » androidgames » wealk » game » DropBubble » Android Open Source

Android Open Source » Game » androidgames 
androidgames » wealk » game » DropBubble » drop.java
package wealk.game.DropBubble;
import org.anddev.andengine.entity.sprite.Sprite;
import org.anddev.andengine.opengl.texture.region.TextureRegion;
/**
 * @author dalong
 * 
 */
public class drop {
  public Sprite mDropSprite;
  public Sprite mBlastDropSprite;
  public drop(){
  }
  //
  public Sprite handleDrop(float x,float y,TextureRegion mTextureRegion){  
    this.mDropSprite = new Sprite(x, y, mTextureRegion);
    return this.mDropSprite;
  }
}
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.