Guest User

Untitled

a guest
May 25th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. import android.os.Bundle
  2. import kotlin.properties.ReadWriteProperty
  3.  
  4. interface BaseSurvivalProperty<T> : ReadWriteProperty<Any, T> {
  5. fun putToBundle(bundle: Bundle, key: String)
  6. fun loadFromBundle(bundle: Bundle, key: String)
  7. }
Add Comment
Please, Sign In to add comment