You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
529 B
23 lines
529 B
4 years ago
|
using System;
|
||
|
|
||
|
namespace AX.AudioSystem
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 表示一个播放曲目。
|
||
|
/// </summary>
|
||
|
public struct Track
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 表示播放曲目的文件名。
|
||
|
/// </summary>
|
||
|
public string Filename;
|
||
|
/// <summary>
|
||
|
/// 表示该曲目是否已被播放过。
|
||
|
/// </summary>
|
||
|
public bool Played;
|
||
|
/// <summary>
|
||
|
/// 表示该曲目是否正在被播放。
|
||
|
/// </summary>
|
||
|
public bool Playing;
|
||
|
}
|
||
|
}
|