package net.shadowfacts.asmr.program /** * @author shadowfacts */ class ProgramBlockInput( val type: ProgramType, var source: ProgramBlockOutput? = null ) { val value: Type? get() = source?.value }