001/*
002 * This software is provided under the terms of the Minecraft Forge Public
003 * License v1.0.
004 */
005package net.minecraftforge.client;
006
007public interface IRenderContextHandler
008{
009    /** Run before the specified rendering context.
010     */
011    public void beforeRenderContext();
012
013    /** Run after the specified rendering context.
014     */
015    public void afterRenderContext();
016}
017