PhysicalConnectivity/src/main/kotlin/net/shadowfacts/cacao/window/ScreenHandlerWindow.kt

14 lines
295 B
Kotlin
Raw Normal View History

2021-02-19 04:27:18 +00:00
package net.shadowfacts.cacao.window
import net.minecraft.screen.ScreenHandler
import net.shadowfacts.cacao.viewcontroller.ViewController
/**
* @author shadowfacts
*/
class ScreenHandlerWindow(
val screenHandler: ScreenHandler,
viewController: ViewController
): Window(viewController) {
}