ReworkedExtraInfoLoading
This commit is contained in:
parent
46e5b289cc
commit
0c0f08c736
1 changed files with 1 additions and 25 deletions
|
@ -1,39 +1,15 @@
|
||||||
package dark.fluid.common;
|
package dark.fluid.common;
|
||||||
|
|
||||||
import net.minecraft.block.material.Material;
|
import net.minecraft.block.material.Material;
|
||||||
import net.minecraftforge.common.Configuration;
|
|
||||||
import dark.core.common.DMCreativeTab;
|
import dark.core.common.DMCreativeTab;
|
||||||
import dark.core.prefab.IExtraObjectInfo;
|
|
||||||
import dark.core.prefab.machine.BlockMachine;
|
import dark.core.prefab.machine.BlockMachine;
|
||||||
import dark.core.registration.ModObjectRegistry.BlockBuildData;
|
import dark.core.registration.ModObjectRegistry.BlockBuildData;
|
||||||
|
|
||||||
public abstract class BlockFM extends BlockMachine implements IExtraObjectInfo
|
public abstract class BlockFM extends BlockMachine
|
||||||
{
|
{
|
||||||
|
|
||||||
public BlockFM(Class<? extends BlockFM> blockClass, String name, Material material)
|
public BlockFM(Class<? extends BlockFM> blockClass, String name, Material material)
|
||||||
{
|
{
|
||||||
super(new BlockBuildData(blockClass, name, material).setConfigProvider(FluidMech.CONFIGURATION).setCreativeTab(DMCreativeTab.tabHydrualic));
|
super(new BlockBuildData(blockClass, name, material).setConfigProvider(FluidMech.CONFIGURATION).setCreativeTab(DMCreativeTab.tabHydrualic));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean hasExtraConfigs()
|
|
||||||
{
|
|
||||||
// TODO Auto-generated method stub
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void loadExtraConfigs(Configuration config)
|
|
||||||
{
|
|
||||||
// TODO Auto-generated method stub
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void loadOreNames()
|
|
||||||
{
|
|
||||||
// TODO Auto-generated method stub
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue