10 lines
188 B
Kotlin
10 lines
188 B
Kotlin
package com.mogo.map
|
|
|
|
import com.mogo.map.overlay.*
|
|
|
|
object MoGoOverlayManager {
|
|
|
|
private val impl by lazy { MoGoOverlayManagerImpl() }
|
|
|
|
fun overlay(): IMoGoOverlayManager = impl
|
|
} |