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