mirror of
https://github.com/Creators-of-Create/Create.git
synced 2025-01-10 14:27:08 +01:00
15 lines
460 B
Java
15 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() {
|
||
|
}
|
||
|
}
|