initial commit
This commit is contained in:
parent
3c9ee26b06
commit
22186c33b9
1458 changed files with 282792 additions and 0 deletions
13
java/src/game/item/ItemDispenser.java
Executable file
13
java/src/game/item/ItemDispenser.java
Executable file
|
@ -0,0 +1,13 @@
|
|||
package game.item;
|
||||
|
||||
import game.block.Block;
|
||||
|
||||
public class ItemDispenser extends ItemBlock {
|
||||
public ItemDispenser(Block block) {
|
||||
super(block);
|
||||
}
|
||||
|
||||
public int getMetadata(int damage) {
|
||||
return 2;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue