blob: f817c3e3b0d351b3af4a6ef539058a39fe7c2a78 [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 update()
def lock()
def unlock()
def readFromNBT(nbt: NBTTagCompound)
def writeToNBT(nbt: NBTTagCompound)
}