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

14 lines
261 B
Kotlin

package net.shadowfacts.asmr.program
import net.minecraft.util.Identifier
/**
* @author shadowfacts
*/
abstract class ExecutableBlock(identifier: Identifier): ProgramBlock(identifier) {
abstract val executionFlow: ExecutionFlow
abstract fun execute()
}