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

14 lines
241 B
Kotlin
Raw Normal View History

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