ITexture.java :  » Game » agameframework » com » agameframework » interfaces » Android Open Source

Android Open Source » Game » agameframework 
agameframework » com » agameframework » interfaces » ITexture.java
package com.agameframework.interfaces;

public interface ITexture {

  public int getTextureName();
  public int getTextureWidth();
  public int getTextureHeight();
  public int getImageWidth();
  public int getImageHeight();
  public boolean isScaled();
  
  public void setTextureName(int name);
  public void setTextureWidth(int twidth);
  public void setTextureHeight(int theight);
  public void setImageWidth(int iwidth);
  public void setImageHeight(int iheight);
  public void setScaled(boolean scaled);
}
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.