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

12 lines
194 B
Kotlin

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