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

12 lines
194 B
Kotlin
Raw Normal View History

2019-08-09 01:44:59 +00:00
package net.shadowfacts.asmr.program
/**
* @author shadowfacts
*/
abstract class ExecutableBlock: ProgramBlock {
var nextExecutableBlock: ExecutableBlock? = null
abstract fun execute()
}