mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-03-07 20:31:51 +09:00
9 lines
166 B
Kotlin
9 lines
166 B
Kotlin
package net.torvald.terrarum
|
|
|
|
/**
|
|
* Created by minjaesong on 2018-06-21.
|
|
*/
|
|
abstract class ModuleEntryPoint {
|
|
abstract fun invoke()
|
|
abstract fun dispose()
|
|
} |