-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathGeoTabSlab.java
33 lines (26 loc) · 876 Bytes
/
GeoTabSlab.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*******************************************************************************
* @author Reika Kalseki
*
* Copyright 2017
*
* All rights reserved.
* Distribution of the software in any form is only allowed with
* explicit, prior permission from the owner.
******************************************************************************/
package Reika.GeoStrata;
import net.minecraft.item.ItemStack;
import Reika.GeoStrata.Base.RockWrapperSortedTab;
import Reika.GeoStrata.Registry.RockShapes;
import Reika.GeoStrata.Registry.RockTypes;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
public class GeoTabSlab extends RockWrapperSortedTab {
public GeoTabSlab(String tabID) {
super(tabID);
}
@Override
@SideOnly(Side.CLIENT)
public ItemStack getIconItemStack() {
return RockTypes.MARBLE.getSlab(RockShapes.ENGRAVED);
}
}