Files

12 lines
203 B
C#
Raw Permalink Normal View History

2025-07-13 23:16:20 +08:00
using System;
namespace UMP
{
interface IPlayerSpu
{
MediaTrackInfo[] SpuTracks { get; }
MediaTrackInfo SpuTrack { get; set; }
bool SetSubtitleFile(Uri path);
}
}