001 package net.minecraft.command;
002
003 public 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 var1, int var2, String var3, Object ... var4);
010 }