electrodynamics/src/main/scala/resonantinduction/core/resource/Alloy.scala
2015-01-12 20:38:11 +08:00

24 lines
377 B
Scala

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)
{
}
}