BananaMpq.MpqFilePaths.MapToInternalName C# (CSharp) Method

MapToInternalName() public static method

public static MapToInternalName ( WowContinent continent ) : string
continent WowContinent
return string
        public static string MapToInternalName(WowContinent continent)
        {
            switch (continent)
            {
                case WowContinent.Kalimdor:
                    return "Kalimdor";
                case WowContinent.EasternKingdoms:
                    return "Azeroth";
                case WowContinent.Outlands:
                    return "Expansion01";
                case WowContinent.Northrend:
                    return "Northrend";
                case WowContinent.Pandaria:
                    return "HawaiiMainLand";
                case WowContinent.GoldRushBG:
                    return "GoldRushBG";
                default:
                    throw new ArgumentOutOfRangeException("continent");
            }
        }