Change loading models (WIP)

This commit is contained in:
Aleksey 2021-05-11 17:55:20 +03:00
parent ce98c5857e
commit 1e6451e375
9 changed files with 86 additions and 23 deletions

View file

@ -1,9 +1,8 @@
package ru.betterend.patterns;
import net.minecraft.client.renderer.block.model.BlockModel;
import org.jetbrains.annotations.NotNull;
public interface Patterned {
String getModelString(String name);
@NotNull BlockModel getItemModel();
BlockModel getItemModel();
}