Package com.echoeight.tankd.entity

Examples of com.echoeight.tankd.entity.BG


            Cursor cursor = (CursorLoader.get()).getCursor("res/cursor.png",8,8);
      Mouse.setNativeCursor(cursor);
    } catch (Exception e) {
      e.printStackTrace();
    }
        bg = new BG(em, 0, 0, 600, 800);
  }
View Full Code Here


      e.printStackTrace();
    }
        drawLevel();
        ui = new CampInput(game, em);
        player = new PlayerTank(em, 400, 100, 34, 34, 0);
        bg = new BG(em, 0, 0, 600, 800);
        tanks.add(player);
        //for(int i=1;i<=player.getAmmo();i++){
          ammoIcons.add(new AmmoIcon(em,200,100,32,14,0));
        //}
  }
View Full Code Here

TOP

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

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.