Package fr.neatmonster.nocheatplus.components

Examples of fr.neatmonster.nocheatplus.components.TickListener.onTick()


            copyListeners = tickListeners.toArray(new TickListener[tickListeners.size()]);
        }
        for (int i = 0; i < copyListeners.length; i++) {
            final TickListener listener = copyListeners[i];
            try{
                listener.onTick(tick, timeLast);
            }
            catch(Throwable t) {
                LogUtil.logSevere("[NoCheatPlus] (TickTask) TickListener generated an exception:");
                LogUtil.logSevere(t);
            }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.