Package spells

Examples of spells.FireBall


  public static BufferedImage ranbowLazer2=null;
  public static void LoadPictures(){
    try {
      //populate map!!!
      effectiveMap=new ConcurrentHashMap<Integer,Entity>();
      effectiveMap.put(FireBall.type, new FireBall(-100,0,0,null));
      effectiveMap.put(BasicTestUnit.type, new BasicTestUnit(-100,0,null));
      effectiveMap.put(RainbowCannon.type, new RainbowCannon(0,0,0,null));
      //if char select put certain char
      ranbowLazer1=ImageIO.read(new File("rainbowLazer1.png"));
      ranbowLazer2=ImageIO.read(new File("rainbowLazer3.png"));
View Full Code Here

TOP

Related Classes of spells.FireBall

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.