2015-05-26 20:03:14 -05:00
|
|
|
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
|
2015-05-26 19:45:58 -05:00
|
|
|
|
2015-05-26 20:03:14 -05:00
|
|
|
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)
|