mirror of
https://github.com/MinecraftForge/MinecraftForge
synced 2026-08-22 04:26:10 -04:00
18 lines
488 B
Java
18 lines
488 B
Java
/*
|
|
* Copyright (c) Forge Development LLC and contributors
|
|
* SPDX-License-Identifier: LGPL-2.1-only
|
|
*/
|
|
|
|
package net.minecraftforge.client;
|
|
|
|
import net.minecraftforge.api.distmarker.Dist;
|
|
import net.minecraft.client.Minecraft;
|
|
import net.minecraft.client.world.ClientWorld;
|
|
import net.minecraftforge.api.distmarker.OnlyIn;
|
|
|
|
@FunctionalInterface
|
|
public interface IRenderHandler
|
|
{
|
|
@OnlyIn(Dist.CLIENT)
|
|
void render(int ticks, float partialTicks, ClientWorld world, Minecraft mc);
|
|
}
|