Esempio n. 1
0
        public bool IsAutoExpandCategory(string inCategory)
        {
            // WITH_EDITOR || HACK_HEADER_GENERATOR
            if (Native_UClass.IsAutoExpandCategory == null)
            {
                return(false);
            }

            using (FStringUnsafe inCategoryUnsafe = new FStringUnsafe(inCategory))
            {
                return(Native_UClass.IsAutoExpandCategory(Address, ref inCategoryUnsafe.Array));
            }
        }