change package names
This commit is contained in:
parent
3e70accb76
commit
d08d0e11fc
1246 changed files with 9285 additions and 9272 deletions
19
java/src/common/enchantment/RngEnchantment.java
Executable file
19
java/src/common/enchantment/RngEnchantment.java
Executable file
|
@ -0,0 +1,19 @@
|
|||
package common.enchantment;
|
||||
|
||||
import common.rng.RngItem;
|
||||
|
||||
public class RngEnchantment extends RngItem
|
||||
{
|
||||
/** Enchantment object associated with this EnchantmentData */
|
||||
public final Enchantment enchantmentobj;
|
||||
|
||||
/** Enchantment level associated with this EnchantmentData */
|
||||
public final int enchantmentLevel;
|
||||
|
||||
public RngEnchantment(Enchantment enchantmentObj, int enchLevel)
|
||||
{
|
||||
super(enchantmentObj.getWeight());
|
||||
this.enchantmentobj = enchantmentObj;
|
||||
this.enchantmentLevel = enchLevel;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue