CSL.NetworkExtensions.Framework.LocaleExtensions.CreateMenuTitleLocalizedString C# (CSharp) 메소드

CreateMenuTitleLocalizedString() 공개 정적인 메소드

public static CreateMenuTitleLocalizedString ( this locale, string key, string label ) : void
locale this
key string
label string
리턴 void
        public static void CreateMenuTitleLocalizedString(this Locale locale, string key, string label)
        {
            locale.AddLocalizedString(new Locale.Key()
            {
                m_Identifier = "MAIN_CATEGORY",
                m_Key = key
            }, label);
        }