Package cpw.mods.fml.common

Examples of cpw.mods.fml.common.SingleIntervalHandler


  public static void registerTickHandler(ITickHandler handler, Side side) {
    if (handler.getClass().getName().toLowerCase().contains("version")) {
      Log.info("Skipping version tick handler " + Log.toString(handler));
      return;
    }
    registerScheduledTickHandler(new SingleIntervalHandler(handler), side);
  }
View Full Code Here

TOP

Related Classes of cpw.mods.fml.common.SingleIntervalHandler

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.