
Added a lot of the upgrades, but there's still more testing/upgrades to be done/reimplemented.
14 lines
436 B
Java
14 lines
436 B
Java
package wayoftime.bloodmagic.common.registration.impl;
|
|
|
|
import net.minecraftforge.fml.RegistryObject;
|
|
import wayoftime.bloodmagic.common.registration.WrappedRegistryObject;
|
|
import wayoftime.bloodmagic.core.living.LivingUpgrade;
|
|
|
|
public class LivingUpgradeRegistryObject<UP extends LivingUpgrade> extends WrappedRegistryObject<UP>
|
|
{
|
|
public LivingUpgradeRegistryObject(RegistryObject<UP> registryObject)
|
|
{
|
|
super(registryObject);
|
|
}
|
|
}
|