def getEntityTypeReg(self): # return an EntityTypeRegistry with information about the # entity types that the crane game uses from . import CogdoEntityTypes from otp.level import EntityTypeRegistry typeReg = EntityTypeRegistry.EntityTypeRegistry(CogdoEntityTypes) return typeReg
def getEntityTypeReg(self): # return an EntityTypeRegistry with information about the # entity types that factories use import FactoryEntityTypes from otp.level import EntityTypeRegistry typeReg = EntityTypeRegistry.EntityTypeRegistry(FactoryEntityTypes) return typeReg
def getStageEntityTypeReg(self): # return an EntityTypeRegistry with information about the # entity types that stages use # Use the same types as factories import FactoryEntityTypes from otp.level import EntityTypeRegistry typeReg = EntityTypeRegistry.EntityTypeRegistry(FactoryEntityTypes) return typeReg
def getCountryClubEntityTypeReg(self): # return an EntityTypeRegistry with information about the # entity types that countryClubys use # Use the same types as factories from . import FactoryEntityTypes from otp.level import EntityTypeRegistry typeReg = EntityTypeRegistry.EntityTypeRegistry(FactoryEntityTypes) return typeReg
def getEntityTypeReg(self): from toontown.coghq import FactoryEntityTypes from otp.level import EntityTypeRegistry typeReg = EntityTypeRegistry.EntityTypeRegistry(FactoryEntityTypes) return typeReg
def getEntityTypeReg(self): import CogdoEntityTypes from otp.level import EntityTypeRegistry typeReg = EntityTypeRegistry.EntityTypeRegistry(CogdoEntityTypes) return typeReg
def getCountryClubEntityTypeReg(self): from . import FactoryEntityTypes from otp.level import EntityTypeRegistry typeReg = EntityTypeRegistry.EntityTypeRegistry(FactoryEntityTypes) return typeReg
def getEntityTypeReg(self): from toontown.cogdominium import CogdoEntityTypes from otp.level import EntityTypeRegistry typeReg = EntityTypeRegistry.EntityTypeRegistry(CogdoEntityTypes) return typeReg