2
0
Fork 0
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
897 B
Java

package net.minecraft.util;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
public interface IProgressUpdate
{
/**
* "Saving level", or the loading,or downloading equivelent
*/
void displayProgressMessage(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_);
/**
* This is called with "Working..." by resetProgressAndMessage
*/
void resetProgresAndWorkingMessage(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 func_146586_a();
}