예제 #1
0
 void player_OnPlaybackFinished(FLCFile file, bool didFinishNormally)
 {
     if (OnMovieFinished != null)
     {
         OnMovieFinished(!didFinishNormally);
     }
     else
     {
         // Don't know what to do, so just return to the main menu
         MainGame.WinWarGame.SetNextGameScreen(new MenuGameScreen(false));
     }
 }
예제 #2
0
 void player_OnPlaybackFinished(FLCFile file, bool didFinishNormally)
 {
     if (didFinishNormally)
     {
         storyboard.NotifyMovieDidFinish();
     }
     else
     {
         if (introFinished != null)
         {
             introFinished(true);
         }
         else
         {
             MainGame.WinWarGame.SetNextGameScreen(new MenuGameScreen(false));
         }
     }
 }
예제 #3
0
 void player_OnFrameUpdated(Texture2D texture, FLCFile file)
 {
     curTexture = texture;
 }
예제 #4
0
 public FLCChunkDeltaFLC(FLCFile setOwnerFile)
     : base(setOwnerFile)
 {
 }
예제 #5
0
 public FLCChunkByteRun(FLCFile setOwnerFile)
     : base(setOwnerFile)
 {
 }
예제 #6
0
 public FLCChunkFLICopy(FLCFile setOwnerFile)
     : base(setOwnerFile)
 {
 }
예제 #7
0
 public FLCChunkFrameType(FLCFile setOwnerFile)
     : base(setOwnerFile)
 {
 }
예제 #8
0
 public FLCChunkUnknown(FLCFile setOwnerFile)
     : base(setOwnerFile)
 {
 }