package net.shadowfacts.asmr.program /** * @author shadowfacts */ abstract class ExecutableBlock: ProgramBlock { var nextExecutableBlock: ExecutableBlock? = null abstract fun execute() }