Exemple #1
0
 def SetLoadingPhase(self):
     try:
         import introLoading
         self.SetPhaseWindow(introLoading.LoadingWindow(self))
     except:
         import exception
         exception.Abort("networkModule.SetLoadingPhase")
Exemple #2
0
 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")