ocarina/libsaria/callbacks.py
Bryan Schumaker 7879c53fe7 libsaria: Created pause callback
This replaces the (PRE, POST)PAUSE events
2011-05-01 12:46:16 -04:00

13 lines
148 B
Python

# Bryan Schumaker (4 / 30 / 2011)
def null_cb(*args):
pass
on_play = null_cb
def play():
on_play()
on_pause = null_cb
def pause():
on_pause()