blob: 717acf55653c7b5116c51feda643d07c87009f81 [file] [log] [blame] [raw]
package li.cil.oc.common.computer
import scala.collection.Seq
import net.minecraft.nbt.NBTTagCompound
import li.cil.oc.server.computer.IComputerContext
import com.naef.jnlua.LuaState
trait IInternalComputerContext extends IComputerContext {
def luaState: LuaState
def start(): Boolean
def stop(): Unit
def update()
def readFromNBT(nbt: NBTTagCompound)
def writeToNBT(nbt: NBTTagCompound)
}