Hide is called when an other Scene becomes active
()
| 32 | type Hider interface { |
| 33 | // Hide is called when an other Scene becomes active |
| 34 | Hide() |
| 35 | } |
| 36 | |
| 37 | // Exiter is an optional interface a Scene can implement, indicating it'll have custom behavior |