10 lines
593 B
Python
10 lines
593 B
Python
from direct.directnotify import DirectNotifyGlobal
|
|
from otp.distributed.OTPInternalRepository import OTPInternalRepository
|
|
from otp.distributed.OtpDoGlobals import *
|
|
|
|
class ToontownInternalRepository(OTPInternalRepository):
|
|
notify = DirectNotifyGlobal.directNotify.newCategory('ToontownInternalRepository')
|
|
GameGlobalsId = OTP_DO_ID_TOONTOWN
|
|
|
|
def __init__(self, baseChannel, serverId=None, dcFileNames=None, dcSuffix='AI', connectMethod=None, threadedNet=None):
|
|
OTPInternalRepository.__init__(self, baseChannel, serverId, dcFileNames, dcSuffix, connectMethod, threadedNet)
|