Package jpotter.spells

Examples of jpotter.spells.Accio


      ihm.createEnemy(enemies[i]);
    }

    // simulation
    Spell[] spells = new Spell[] { new Aguamenti(), new Avis(),
        new Deprimo(), new Incendio(), new Expelliarmus(), new Accio() };

    // for (int i = 0; i < spells.length; i++) {
    // System.out.println(spells[i].toString());
    // ihm.setEnemyTarget(i%4);
    // ihm.cast(spells[i]);
View Full Code Here


    initSpells();
  }

  private void initSpells() {
    // add some random spells for now
    knownSpells.add(new Accio());
    knownSpells.add(new Aguamenti());
    knownSpells.add(new Avis());
    knownSpells.add(new Deprimo());
    knownSpells.add(new Expelliarmus());
    knownSpells.add(new Incendio());
View Full Code Here

TOP

Related Classes of jpotter.spells.Accio

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.