Change loading models (WIP)

This commit is contained in:
Aleksey 2021-05-14 16:46:26 +03:00
parent 1e6451e375
commit 6447ec6026
56 changed files with 196 additions and 176 deletions

View file

@ -0,0 +1,8 @@
package ru.betterend.patterns;
import net.minecraft.client.renderer.block.model.BlockModel;
public interface ModelProvider {
String getModelString(String name);
BlockModel getModel();
}