mirror of
https://gitee.com/dgflash/oops-plugin-framework.git
synced 2026-06-23 19:22:47 +08:00
8 lines
156 B
TypeScript
8 lines
156 B
TypeScript
/** 音乐音效默认类型 */
|
|
export enum AudioEffectType {
|
|
/** 背景音乐 */
|
|
Music = 'music',
|
|
/** 音乐音效 */
|
|
Effect = 'effect',
|
|
}
|