Package Raid

Source Code of Raid.Air

package Raid;

import org.lwjgl.opengl.GL11;
import org.newdawn.slick.geom.Rectangle;


public class Air extends Block{

  static String[] texNames = {"res/char.png"};
 
  public Air(double startx, double starty){
    x = startx;
    y = starty;
    id = Type.AIR;
    solid = false;
    mask = new Rectangle((float)x, (float)y, (float)width, (float)width);
  }
 
 
  public void render(){
  }
 
  public void update(){ 
  }
 
  public boolean takeDamage(double damage){
    return false;
  }
 
}
TOP

Related Classes of Raid.Air

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.