PhysicalConnectivity/src/main/kotlin/net/shadowfacts/phycon/block/terminal/TerminalViewController.kt

14 lines
286 B
Kotlin

package net.shadowfacts.phycon.block.terminal
/**
* @author shadowfacts
*/
class TerminalViewController(
screen: TerminalScreen,
handler: TerminalScreenHandler,
): AbstractTerminalViewController<TerminalBlockEntity, TerminalScreen, TerminalScreenHandler>(
screen,
handler,
) {
}