001package net.minecraft.command;
002
003public interface IAdminCommand
004{
005    /**
006     * Sends a message to the admins of the server from a given CommandSender with the given resource string and given
007     * extra srings. If the int par2 is even or zero, the original sender is also notified.
008     */
009    void notifyAdmins(ICommandSender icommandsender, int i, String s, Object ... var4);
010}