Package com.echoeight.tankd.entity

Examples of com.echoeight.tankd.entity.Shell


    tank.getTurret().setAngle(180-tank.getTurret().getMouseAngle());
   
    if(Mouse.next()){
      if(Mouse.isButtonDown(0)){
        Shell shell = new Shell(em,tank,tank.getX(),tank.getY(),3,1,(int) tank.getTurret().getAngle());
        tank.addShell(shell);
        moveShell(shell);
      }
      if(Mouse.isButtonDown(1)){
        createExplosion(100);
View Full Code Here

TOP

Related Classes of com.echoeight.tankd.entity.Shell

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.