Much more work to do
This commit is contained in:
parent
86e78dcb45
commit
39585ef5cb
1 changed files with 30 additions and 0 deletions
30
ee3_common/ee3/core/BlockEE.java
Normal file
30
ee3_common/ee3/core/BlockEE.java
Normal file
|
@ -0,0 +1,30 @@
|
|||
package ee3.core;
|
||||
|
||||
import net.minecraft.src.BlockContainer;
|
||||
import net.minecraft.src.Material;
|
||||
import net.minecraft.src.TileEntity;
|
||||
import net.minecraft.src.forge.ITextureProvider;
|
||||
|
||||
public class BlockEE extends BlockContainer implements ITextureProvider {
|
||||
|
||||
protected BlockEE(int i) {
|
||||
super(i, Material.rock);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getTextureFile() {
|
||||
// TODO
|
||||
return "";
|
||||
}
|
||||
|
||||
@Override
|
||||
public TileEntity getBlockEntity() {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public TileEntity getBlockEntity(int metadata) {
|
||||
// TODO
|
||||
return null;
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue