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