mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-06-09 10:04:05 +09:00
11 lines
247 B
Kotlin
11 lines
247 B
Kotlin
package net.torvald.terrarum
|
|
|
|
|
|
/**
|
|
* Created by minjaesong on 2018-06-21.
|
|
*/
|
|
abstract class ModuleEntryPoint {
|
|
abstract fun invoke()
|
|
abstract fun dispose()
|
|
open fun getTitleScreen(batch: FlippingSpriteBatch): IngameInstance? = null
|
|
} |