From 7613aaee7999a628b0ed93d17b65377ebd8dac4b Mon Sep 17 00:00:00 2001 From: Osnapman Date: Tue, 26 May 2015 21:03:14 -0400 Subject: [PATCH] zach c0de --- toontown/shtiker/GroupPage.py | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) 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)