Started some work on alloys
This commit is contained in:
parent
ef3c381152
commit
5ed1271d87
1 changed files with 23 additions and 0 deletions
23
src/main/scala/resonantinduction/core/resource/Alloy.scala
Normal file
23
src/main/scala/resonantinduction/core/resource/Alloy.scala
Normal 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)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue