add jam block
This commit is contained in:
parent
218e8fdaa6
commit
f7c8c9746e
|
@ -0,0 +1,8 @@
|
||||||
|
package com.futhark.block;
|
||||||
|
import net.minecraft.block.Block;
|
||||||
|
|
||||||
|
public class ModBlocks extends Block {
|
||||||
|
public ModBlocks(Settings settings) {
|
||||||
|
super(settings);
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,4 @@
|
||||||
|
package com.futhark.item;
|
||||||
|
|
||||||
|
public class ModItemGroups {
|
||||||
|
}
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "item/generated",
|
||||||
|
"textures": {
|
||||||
|
"layer0": "futhark:item/jaffa_cake"
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "block/cube_all",
|
||||||
|
"textures": {
|
||||||
|
"all": "futhark:block/jaffa_jam_block"
|
||||||
|
}
|
||||||
|
}
|
Binary file not shown.
After Width: | Height: | Size: 5.6 KiB |
Binary file not shown.
After Width: | Height: | Size: 5.6 KiB |
Loading…
Reference in New Issue