Examples of ImmovableBlockRectangle


Examples of rectangles.ImmovableBlockRectangle

  public ImmovableBlock(Point p, Map map) {
    this.map = map;
    location = p;// setting location of immovable block
    health = -1;// -1 invincible so -1 health
    // creating new rectangle to detect collisions
    rect = new ImmovableBlockRectangle(location.col - 25, location.row - 25);

  }
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.