package net.minecraft.util; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; public interface IProgressUpdate { /** * Shows the 'Saving level' string. */ void displaySavingString(String p_73720_1_); /** * this string, followed by "working..." and then the "% complete" are the 3 lines shown. This resets progress to 0, * and the WorkingString to "working...". */ @SideOnly(Side.CLIENT) void resetProgressAndMessage(String p_73721_1_); /** * Displays a string on the loading screen supposed to indicate what is being done currently. */ void displayLoadingString(String p_73719_1_); /** * Updates the progress bar on the loading screen to the specified amount. Args: loadProgress */ void setLoadingProgress(int p_73718_1_); @SideOnly(Side.CLIENT) void setDoneWorking(); }