Package edu.ups.gamedev.scene

Examples of edu.ups.gamedev.scene.Collidable


   
    TankGame.GAME.unlock();
  }

  private void handleFireable(Node node, Node other) {
    Collidable parent = Tools.getCollidableParent(node);
    if (parent instanceof Fireable) {
      ((Fireable) parent).detonate(other);
    }
  }
View Full Code Here

TOP

Related Classes of edu.ups.gamedev.scene.Collidable

Copyright © 2018 www.massapicom. 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.