///
/// 用于存储每帧更新的歌曲信息,只包含当前时间,
///
public class SongInformationContainer
{
private float songCurrentTime;
///
/// 歌曲目前的时间
///
public float SongCurrentTime { get { return songCurrentTime; } set { songCurrentTime = value; } }
public SongInformationContainer() { }
public void UpdateSongInformation(float songCurrentTime)
{
this.songCurrentTime = songCurrentTime;
}
}