Package MineGod

Source Code of MineGod.BlockMask

package MineGod;

import org.newdawn.slick.geom.Rectangle;

public class BlockMask {

  public double xPos;
  public double yPos;
  public Block block;
  public Rectangle mask;
 
 
  public BlockMask(Block block, double x, double y){
    xPos = x;
    yPos = y;
    this.block = block;
    mask = new Rectangle((float)x, (float)y, (float)Block.WIDTH, (float)Block.WIDTH);
  }
 
 
 
}
TOP

Related Classes of MineGod.BlockMask

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.