Package com.pointcliki.dizgruntled.logic

Examples of com.pointcliki.dizgruntled.logic.Scenery


  public Logic createFromWWD(String logic, String image, String animation, byte[] data) {
    Logic l = null;
   
    // Create scenery logic
    if (logic.equals("EyeCandy") || logic.equals("EyeCandyAni") || logic.equals("BehindCandyAni") || logic.equals("DoNothing") || logic.equals("BehindCandy")) {
      l = new Scenery();
    } else if (logic.equals("GruntStartingPoint")) {
      l = new Grunt();
    } else if (logic.equals("InGameIcon")) {
      l = new Pickup();
    } else if (logic.equals("TileTrigger") || logic.equals("TileSecretTrigger") || logic.equals("SecretLevelTrigger")) {
View Full Code Here

TOP

Related Classes of com.pointcliki.dizgruntled.logic.Scenery

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.