枚举管理音乐名

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class Music 
{
    public enum Music_Feeds
    {
        PetSound12,
        PetSound11,
        PetSound10,
        PetSound03,
        PetSound02,
        PetSound01,
        PetSound00,
        PetChange02,
        PetChange01,
        GiftBox03,
        GiftBox02,
        GiftBox01,
        Feed02,
        Feed01,
        BuyItem,
    }
    public enum Music_Item
    {
        clock,
        carrot3,
        carrot2,
        carrot1,
        bomb,
        TowerUpdata,
        TowerSell,
        TowerSelect,
        TowerDeselect,
        TowerBulid,
        ShootSelect,
        SelectFault,
        Perfect,
        Object,
        MenuSelect,
        MC,
        Lose,
        GO,
        Finalwave,
        CutWhale,
        Crash,
        CountDown,
        BGMusic12,
        BGMusic11,
        BGMusic06,
        BGMusic03,
        BGMusic02,
        BGMusic01,
        Ach,

    }
    public enum Music_Main
    {
        Unlock,
        Select,
        BGMusic,
        Accomplish,

    }
    public enum Monsters
    {
        Whale,
        LittleBoss,
        Land633,
        Land632,
        Land631,
        Land623,
        Land622,
        Land621,
        Land613,
        Land612,
        Land611,
        Land333,
        Land332,
        Land331,
        Land323,
        Land322,
        Land321,
        Land312,
        Land311,
        Land232,
        Land231,
        Land222,
        Land221,
        Land211,
        Land133,
        Land132,
        Land131,
        Land122,
        Land121,
        Land113,
        Land112,
        Land111,
        Fly663,
        Fly662,
        Fly661,
        Fly653,
        Fly652,
        Fly651,
        Fly363,
        Fly362,
        Fly361,
        Fly352,
        Fly351,
        Fly263,
        Fly262,
        Fly261,
        Fly253,
        Fly252,
        Fly251,
        Fly163,
        Fly162,
        Fly161,
        Fly152,
        Fly151,
        Fat643,
        Fat642,
        Fat641,
        Fat343,
        Fat342,
        Fat341,
        Fat243,
        Fat242,
        Fat241,
        Fat143,
        Fat142,
        Fat141,
        BigBoss,
    }
    public enum Towers
    {
        Sun,
        Star,
        Snow,
        Shit,
        Rocket,
        Plane,
        Pin,
        PStar,
        Mushroom,
        Fish,
        FireBottle,
        Fan,
        Cuttle,
        Buff,
        Bottle,
        Ball,
        Arrow,
        Anchor,
    }


}

你可能感兴趣的:(枚举管理音乐名)