Guest User

Untitled

a guest
May 24th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. class SplashActivity : ViewModelActivity<SplashViewModel, SplashActivityBinding, SplashView>(), SplashView {
  2.  
  3. override fun requestExtractGames() = extractGames(this)
  4.  
  5. override fun goToMenu() = startActivityCloseStack(this, MenuActivity::class)
  6.  
  7. override fun layoutId(): Int = R.layout.activity_splash
  8.  
  9. override fun variableId(): Int = BR.vm
  10.  
  11. override fun viewModel(): SplashViewModel = SplashViewModel()
  12. }
Add Comment
Please, Sign In to add comment