mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-04-02 09:46:24 +02:00
26 lines
634 B
Java
26 lines
634 B
Java
//package com.gmail.nossr50.datatypes.mods;
|
|
//
|
|
//public class CustomBlock {
|
|
// private int xpGain;
|
|
// private boolean canDoubleDrop;
|
|
// private int smeltingXpGain;
|
|
//
|
|
// public CustomBlock(int xpGain, boolean canDoubleDrop, int smeltingXpGain) {
|
|
// this.xpGain = xpGain;
|
|
// this.canDoubleDrop = canDoubleDrop;
|
|
// this.smeltingXpGain = smeltingXpGain;
|
|
// }
|
|
//
|
|
// public int getXpGain() {
|
|
// return xpGain;
|
|
// }
|
|
//
|
|
// public boolean isDoubleDropEnabled() {
|
|
// return canDoubleDrop;
|
|
// }
|
|
//
|
|
// public int getSmeltingXpGain() {
|
|
// return smeltingXpGain;
|
|
// }
|
|
//}
|