Started some work on alloys

This commit is contained in:
Calclavia 2015-01-12 20:38:11 +08:00
parent ef3c381152
commit 5ed1271d87

View file

@ -0,0 +1,23 @@
package resonantinduction.core.resource
import net.minecraft.nbt.NBTTagCompound
import resonant.lib.utility.nbt.ISaveObj
/**
* A class that stores alloy objects
* @author Calclavia
*/
class Alloy(val max: Int) extends ISaveObj
{
var mixture = Map.empty[String, Int]
override def save(nbt: NBTTagCompound)
{
}
override def load(nbt: NBTTagCompound)
{
}
}