HUDRenderListener.java 347 Bytes
package com.mumfrey.liteloader;

/**
 * Interface for mods which want callbacks when the HUD is rendered
 * 
 * @author Adam Mummery-Smith
 */
public interface HUDRenderListener extends LiteMod
{
	public abstract void onPreRenderHUD(int screenWidth, int screenHeight);
	
	public abstract void onPostRenderHUD(int screenWidth, int screenHeight);
}