ocarina/libsaria/callbacks.py
Bryan Schumaker b562fff0ed libsaria: Began implementing better callback system
The event system was evil, hard to use, and hard to follow.  This patch
is the beginning of a new, more straightforward system.
2011-05-01 12:46:16 -04:00

9 lines
103 B
Python

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