package net.shadowfacts.asmr.program import net.minecraft.util.Identifier /** * @author shadowfacts */ abstract class ExecutableBlock(identifier: Identifier): ProgramBlock(identifier) { abstract val executionFlow: ExecutionFlow abstract fun execute() }