コード例 #1
0
 public static void Play(ModFile f)
 {
     if (!f.Enabled)
     {
         ModPlayer.Play(f.Base);
         return;
     }
     ModPlayer.Play(f.FilePath);
 }
コード例 #2
0
        public static void Play(ElswordFile f)
        {
            string fileName = f.FileName;

            ModPlayer.Play(Path.Combine((fileName.EndsWith(".ogg") ? Paths.Elsword.Music : Paths.Elsword.Movie), fileName));
        }