Guest User

Untitled

a guest
Jul 18th, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. class ManualLazy {
  2. private var _hero: Hero? = null
  3.  
  4. val hero: Hero
  5. get() {
  6. if (_hero == null) {
  7. _hero = Hero("agility", "melee")
  8. }
  9. return _hero!!
  10. }
  11. }
Add Comment
Please, Sign In to add comment