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

12 lines
192 B
Kotlin
Raw Normal View History

2019-08-09 01:44:59 +00:00
package net.shadowfacts.asmr.program
/**
* @author shadowfacts
*/
2019-08-09 02:44:19 +00:00
abstract class ExecutableBlock: ProgramBlock() {
2019-08-09 01:44:59 +00:00
open val executionFlow = ExecutionFlow(this)
2019-08-09 01:44:59 +00:00
abstract fun execute()
}