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

21 lines
491 B
Kotlin
Raw Normal View History

2019-08-09 01:44:59 +00:00
package net.shadowfacts.asmr.program.blocks
2019-08-10 23:21:26 +00:00
import net.minecraft.util.Identifier
import net.shadowfacts.asmr.ASMR
2019-08-11 22:53:02 +00:00
import net.shadowfacts.asmr.program.*
2019-08-12 00:05:09 +00:00
import net.shadowfacts.asmr.program.execution.SimpleExecutableBlock
2019-08-09 01:44:59 +00:00
/**
* @author shadowfacts
*/
2019-08-12 00:05:09 +00:00
class StartBlock: SimpleExecutableBlock(
2019-08-10 23:21:26 +00:00
Identifier(ASMR.modid, "start")
) {
2019-08-09 01:44:59 +00:00
override val inputs: Array<ProgramBlockInput<*>> = arrayOf()
override val outputs: Array<ProgramBlockOutput<*>> = arrayOf()
override fun execute() {
}
2019-08-09 01:44:59 +00:00
}