ASMR/src/main/kotlin/net/shadowfacts/asmr/program/ExecutableBlock.kt

12 lines
192 B
Kotlin

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