30 lines
510 B
C#
30 lines
510 B
C#
using System;
|
|
using Sirenix.OdinInspector;
|
|
|
|
namespace Stary.Evo.TableTextConversion
|
|
{
|
|
[Serializable]
|
|
public class AudioEntity
|
|
{
|
|
// 序号
|
|
[GUIColor(0, 1, 0)] public int index;
|
|
|
|
// 名称
|
|
public string auid;
|
|
|
|
public AudioType autype;
|
|
|
|
// 名称描述
|
|
public string filename;
|
|
public string voice;
|
|
public string uirelated;
|
|
}
|
|
|
|
public enum AudioType
|
|
{
|
|
Null,
|
|
music,
|
|
effect,
|
|
sound,
|
|
}
|
|
} |