Usage
After creating your widgets the usual way, you no longer need to call their listen and draw methods every loop. Instead, simply add:
`pygame_widgets.update(events)`
at the end of the main loop and this will handle all of that. Simply call the disable or hide method if you don't want the widget to listen or draw:
`widget.disable()` or `widget.hide()`
Note: Documentation is now available on <a href='https://pygamewidgets.readthedocs.io/en/latest/' target='_blank'>readthedocs.io</a>.