amethyst/app/src/main/java/com/vitorpamplona/amethyst/Amethyst.kt

16 wiersze
297 B
Kotlin

package com.vitorpamplona.amethyst
import android.app.Application
class Amethyst : Application() {
override fun onCreate() {
super.onCreate()
instance = this
}
companion object {
lateinit var instance: Amethyst
private set
}
}