Flywheel/src/main/java/com/jozufozu/flywheel/util/TextureBinder.java
Jozufozu 42365def02 util and core cleanup
- Consolidate/audit utility classes
 - Move more towards sane vertex types
2021-12-22 00:22:41 -08:00

15 lines
455 B
Java

package com.jozufozu.flywheel.util;
import net.minecraft.client.renderer.RenderType;
/**
* This is a silly hack that's needed because flywheel does things too different from vanilla.
*
* <p>
* When a {@link RenderType} is setup, the associated textures are "bound" within RenderSystem, but not actually
* bound via opengl. This class provides a helper function to forward the bindings to opengl.
* </p>
*/
public class TextureBinder {
}