blob: d683670a0c2196522838e77c700e22d29f99551d [file] [log] [blame] [raw]
package li.cil.oc
import li.cil.oc.common.block._
object Blocks {
var blockSimple: Delegator = null
var blockSpecial: Delegator = null
var computer: Computer = null
var screen: Screen = null
var keyboard: Keyboard = null
var powerSupply: PowerSupply = null
var powerDistributor: PowerDistributor = null
var adapter: Adapter = null
var diskDrive: DiskDrive = 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 Delegator(Config.blockId)
blockSpecial = new SpecialDelegator(Config.blockSpecialId)
computer = new Computer(blockSimple)
screen = new Screen(blockSimple)
keyboard = new Keyboard(blockSpecial)
powerSupply = new PowerSupply(blockSimple)
powerDistributor = new PowerDistributor(blockSimple)
adapter = new Adapter(blockSimple)
diskDrive = new DiskDrive(blockSimple)
}
}