12 lines
		
	
	
	
		
			322 B
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			322 B
		
	
	
	
		
			Java
		
	
	
	
	
	
| package net.minecraft.client.renderer.texture;
 | |
| 
 | |
| import com.mojang.blaze3d.textures.GpuTexture;
 | |
| import net.fabricmc.api.EnvType;
 | |
| import net.fabricmc.api.Environment;
 | |
| 
 | |
| @Environment(EnvType.CLIENT)
 | |
| public interface SpriteTicker extends AutoCloseable {
 | |
| 	void tickAndUpload(int x, int y, GpuTexture texture);
 | |
| 
 | |
| 	void close();
 | |
| }
 |