Examples of ADXSprite


Examples of render.ADXSprite

    public int height;
   
    public Asset(int code, String name, String spritePath, boolean canSpray, int maximum) {
      this.code = code;
      this.name = name;
      sprite = new ADXSprite(spritePath);
      width = sprite.getWidth() / gridXSize;
      height = sprite.getHeight() / gridYSize;
      this.canSpray = canSpray;
      this.maximum = maximum;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.