Add last few bits and pieces for the initial release #4

Merged
BlakeRain merged 8 commits from BlakeRain/utamacraft:main into main 2023-11-26 14:07:49 +00:00
Showing only changes of commit 2d7859e76f - Show all commits

View File

@ -1,14 +1,18 @@
package net.banutama.utamacraft.item; package net.banutama.utamacraft.item;
import net.banutama.utamacraft.Utamacraft;
import net.minecraft.world.item.CreativeModeTab; import net.minecraft.world.item.CreativeModeTab;
import net.minecraft.world.item.ItemStack; import net.minecraft.world.item.ItemStack;
import net.minecraftforge.eventbus.api.SubscribeEvent;
import net.minecraftforge.fml.common.Mod;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
@Mod.EventBusSubscriber(modid = Utamacraft.MOD_ID, bus = Mod.EventBusSubscriber.Bus.MOD)
public class ModCreativeModeTab { public class ModCreativeModeTab {
// public static final CreativeModeTab TUTORIAL_TAB = new CreativeModeTab("tutorialtab") { public static final CreativeModeTab TAB = new CreativeModeTab("utamacraft_tab") {
// @Override @Override
// public @NotNull ItemStack makeIcon() { public ItemStack makeIcon() {
// return new ItemStack(ModItems.ZIRCON.get()); return new ItemStack(ModItems.LOGO.get());
// } }
// }; };
} }