ASMR/src/main/kotlin/net/shadowfacts/asmr/program/blocks/StartBlock.kt

22 lines
474 B
Kotlin

package net.shadowfacts.asmr.program.blocks
import net.minecraft.util.Identifier
import net.shadowfacts.asmr.ASMR
import net.shadowfacts.asmr.program.*
/**
* @author shadowfacts
*/
class StartBlock: ExecutableBlock(
Identifier(ASMR.modid, "start")
) {
override val inputs: Array<ProgramBlockInput<*>> = arrayOf()
override val outputs: Array<ProgramBlockOutput<*>> = arrayOf()
override val executionFlow = DirectExecutionFlow(this)
override fun execute() {
}
}