blob: 4ff3b4f29025024ba65a612256dd2749f086265d [file] [log] [blame] [raw]
package li.cil.oc
import li.cil.oc.common.block._
object Blocks {
var blockSimple: Multi = null
var blockSpecial: Multi = null
var computer: Computer = null
var screen: Screen = null
var keyboard: Keyboard = null
def init() {
// IMPORTANT: the multi block must come first, since the sub blocks will
// try to register with it. Also, the order the sub blocks are created in
// must not be changed since that order determines their actual IDs.
blockSimple = new Multi(Config.blockId)
blockSpecial = new SpecialMulti(Config.blockSpecialId)
computer = new Computer(blockSimple)
screen = new Screen(blockSimple)
keyboard = new Keyboard(blockSpecial)
}
}