blob: 4907efccdd8de746c234f52fb2bd4e330c19f803 [file] [log] [blame] [raw]
package li.cil.oc.server.computer
import net.minecraft.world.World
/**
* This has to be implemented by owners of computer instances and allows the
* computers to access information about the world they live in.
*/
trait IComputerEnvironment {
def world: World
}