diff --git a/toontown/shtiker/GroupPage.py b/toontown/shtiker/GroupPage.py index 8b137891..05238289 100644 --- a/toontown/shtiker/GroupPage.py +++ b/toontown/shtiker/GroupPage.py @@ -1 +1,28 @@ +from ShtikerPage import ShtikerPage +from direct.gui.DirectGui import * +from direct.directnotify import DirectNotifyGlobal +from pandac.PandaModules import * +from toontown.toonbase import ToontownGlobals +from toontown.toonbase import TTLocalizer +from toontown.toonbase import TTLocalizerEnglish +class GroupPage(ShtikerPage): + notify = DirectNotifyGlobal.directNotify.newCategory('GroupPage') + + def __init__(self): + ShtikerPage.__init__(self) + + def load(self): + ShtikerPage.load(self) + + def unload(self): + SktikerPage.unload(self) + + def enter(self): + ShtikerPage.enter(self) + + def exit(self): + ShtikerPage.exit(self) + + def destroy(self): + DirectFrame.destroy(self)