def SetLoadingPhase(self): try: import introLoading self.SetPhaseWindow(introLoading.LoadingWindow(self)) except: import exception exception.Abort("networkModule.SetLoadingPhase")
def SetTestGamePhase(self, x, y): try: import introLoading loadingPhaseWindow = introLoading.LoadingWindow(self) loadingPhaseWindow.LoadData(x, y) self.SetPhaseWindow(loadingPhaseWindow) except: import exception exception.Abort("networkModule.SetLoadingPhase")