callbacks.py created

This commit is contained in:
ingvar1995 2016-02-22 18:55:04 +03:00
parent 8dae4fcad9
commit 01510f67e8
2 changed files with 16 additions and 14 deletions

14
src/callbacks.py Normal file
View file

@ -0,0 +1,14 @@
# TODO: add all callbacks (use wrappers)
def status(a, b, c):
print 'WOW, it works!'
print str(b)
def friend_status(a, b, c, d, e):
print 'Friend connected! Friend number: ' + str(c)
def message(a, b, c, d, e, f):
print 'Message: ', str(d)