- Clientside anotations for ArmoredElytra

- Update dependency in fabric.mod.json
- Renamed interface
- Cleanup
This commit is contained in:
Aleksey 2021-05-04 10:37:48 +03:00
parent d7734cdf22
commit cdeabbccb2
5 changed files with 22 additions and 18 deletions

View file

@ -1,5 +0,0 @@
package ru.betterend.interfaces;
public interface BreakableItem {
void registerBrokenItem();
}

View file

@ -0,0 +1,9 @@
package ru.betterend.interfaces;
import net.fabricmc.api.EnvType;
import net.fabricmc.api.Environment;
@Environment(EnvType.CLIENT)
public interface MultiModelItem {
void registerModelPredicate();
}