Package fr.neatmonster.nocheatplus.players

Examples of fr.neatmonster.nocheatplus.players.ExecutionHistory


     *            the player
     * @return the history
     */
    protected static ExecutionHistory getHistory(final Player player) {
        if (!histories.containsKey(player.getName()))
            histories.put(player.getName(), new ExecutionHistory());
        return histories.get(player.getName());
    }
View Full Code Here

TOP

Related Classes of fr.neatmonster.nocheatplus.players.ExecutionHistory

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.