Show is called whenever the other Scene becomes inactive, and this one becomes the active one
()
| 25 | type Shower interface { |
| 26 | // Show is called whenever the other Scene becomes inactive, and this one becomes the active one |
| 27 | Show() |
| 28 | } |
| 29 | |
| 30 | // Hider is an optional interface a Scene can implement, indicating it'll have custom behavior |