This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"atom-material-ui": | |
prettyName: "Atom Material Ui" | |
homepage: "https:/atom.io/packages/atom-material-ui" | |
"bottom-dock": | |
prettyName: "Bottom Dock" | |
homepage: "https:/atom.io/packages/bottom-dock" | |
"build-tools": | |
prettyName: "Build Tools" | |
homepage: "https:/atom.io/packages/build-tools" | |
busy: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public final class Reference { | |
public static final String MOD_ID = "ID"; | |
public static final String MOD_NAME = "NAME"; | |
public static final String VERSION = "MCVer-ModVer"; | |
public static final String CLIENT_PROXY_CLASS = "io.github.craftedcart.ID.proxy.ClientProxy"; | |
public static final String SERVER_PROXY_CLASS = "io.github.craftedcart.ID.proxy.ServerProxy"; | |
public static final String GUI_FACTORY_CLASS = "io.github.craftedcart.ID.client.gui.GuiFactory"; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class LogHelper { | |
public static void log(Level logLevel, Object object) { | |
FMLLog.log(Reference.MOD_NAME, logLevel, String.valueOf(object)); | |
} | |
public static void all(Object object) { | |
log(Level.ALL, object); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@SideOnly(Side.CLIENT) | |
public boolean shouldSideBeRendered(IBlockAccess world, int x, int y, int z, int side) { | |
Block block = world.getBlock(x, y, z); | |
if (block == this) { | |
return false; | |
} | |
return super.shouldSideBeRendered(world, x, y, z, side); | |
} |
NewerOlder