mirror of
https://github.com/null2264/yokai.git
synced 2025-06-21 10:44:42 +00:00
enhance: Base controller for compose with presenter
This commit is contained in:
parent
e4967ca7a5
commit
680f7af111
1 changed files with 10 additions and 0 deletions
|
@ -0,0 +1,10 @@
|
|||
package eu.kanade.tachiyomi.ui.base.controller
|
||||
|
||||
import android.os.Bundle
|
||||
import eu.kanade.tachiyomi.ui.base.presenter.BaseCoroutinePresenter
|
||||
|
||||
abstract class BaseCoroutineComposeController<PS : BaseCoroutinePresenter<*>>(bundle: Bundle? = null) :
|
||||
BaseComposeController(bundle) {
|
||||
|
||||
abstract val presenter: PS
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue