mirror of
https://github.com/Creators-of-Create/Create.git
synced 2025-01-10 06:16:31 +01:00
7dc6fc7576
- Finish refactor of item description tooltips and kinetic stat tooltips - Change Palette to use Style instead of ChatFormatting - Remove old code in TooltipHelper - Add deferred registration capabilities to AttachedRegistry - Move creative mode tabs to AllCreativeModeTabs - Delete IItemHandlerModifiableIntermediate - Delete StorageInterfaceMovement
14 lines
460 B
Java
14 lines
460 B
Java
package com.simibubi.create;
|
|
|
|
import com.simibubi.create.content.palettes.PalettesCreativeModeTab;
|
|
import com.simibubi.create.foundation.item.BaseCreativeModeTab;
|
|
|
|
import net.minecraft.world.item.CreativeModeTab;
|
|
|
|
public class AllCreativeModeTabs {
|
|
public static final CreativeModeTab BASE_CREATIVE_TAB = new BaseCreativeModeTab();
|
|
public static final CreativeModeTab PALETTES_CREATIVE_TAB = new PalettesCreativeModeTab();
|
|
|
|
public static void init() {
|
|
}
|
|
}
|