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.
16 lines
374 B
Java
16 lines
374 B
Java
/*
|
|
* This software is provided under the terms of the Minecraft Forge Public
|
|
* License v1.0.
|
|
*/
|
|
package net.minecraftforge.client;
|
|
|
|
public interface IRenderContextHandler
|
|
{
|
|
/** Run before the specified rendering context.
|
|
*/
|
|
public void beforeRenderContext();
|
|
|
|
/** Run after the specified rendering context.
|
|
*/
|
|
public void afterRenderContext();
|
|
} |