Fish animation & egg
This commit is contained in:
parent
e76577328c
commit
112783835e
5 changed files with 79 additions and 7 deletions
10
src/main/java/ru/betterend/item/ItemSpawnEgg.java
Normal file
10
src/main/java/ru/betterend/item/ItemSpawnEgg.java
Normal file
|
@ -0,0 +1,10 @@
|
|||
package ru.betterend.item;
|
||||
|
||||
import net.minecraft.entity.EntityType;
|
||||
import net.minecraft.item.SpawnEggItem;
|
||||
|
||||
public abstract class ItemSpawnEgg extends SpawnEggItem {
|
||||
public ItemSpawnEgg(EntityType<?> type, int primaryColor, int secondaryColor, Settings settings) {
|
||||
super(type, primaryColor, secondaryColor, settings);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue