comment change

This commit is contained in:
Darren Ranalli 2004-11-29 21:59:27 +00:00
parent 363d47f644
commit 1cc8cf5aa1

View File

@ -3,9 +3,9 @@ from direct.showbase.PythonUtil import Functor
from direct.showbase import DirectObject from direct.showbase import DirectObject
class BulletinBoardWatcher(DirectObject.DirectObject): class BulletinBoardWatcher(DirectObject.DirectObject):
"""This class allows you to wait for N posts to be made to the bulletin """This class allows you to wait for a set of posts to be made to the
board, and give you a notification when all posts have been made. Values bulletin board, and give you a notification when all posts have been
of posts are not examined.""" made. Values of posts are not examined."""
notify = DirectNotifyGlobal.directNotify.newCategory('BulletinBoardWatcher') notify = DirectNotifyGlobal.directNotify.newCategory('BulletinBoardWatcher')
def __init__(self, name, postNames, callback): def __init__(self, name, postNames, callback):