mirror of
https://github.com/Jozufozu/Flywheel.git
synced 2025-01-09 22:06:09 +01:00
23 lines
606 B
Java
23 lines
606 B
Java
|
package com.simibubi.create;
|
||
|
|
||
|
import com.simibubi.create.foundation.block.SpriteShifter;
|
||
|
|
||
|
import net.minecraft.client.resources.ReloadListener;
|
||
|
import net.minecraft.profiler.IProfiler;
|
||
|
import net.minecraft.resources.IResourceManager;
|
||
|
|
||
|
public class ResourceReloadHandler extends ReloadListener<String> {
|
||
|
|
||
|
@Override
|
||
|
protected String prepare(IResourceManager resourceManagerIn, IProfiler profilerIn) {
|
||
|
return "";
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
protected void apply(String splashList, IResourceManager resourceManagerIn, IProfiler profilerIn) {
|
||
|
SpriteShifter.reloadUVs();
|
||
|
CreateClient.bufferCache.invalidate();
|
||
|
}
|
||
|
|
||
|
}
|