// Token: 0x0600C2F8 RID: 49912 RVA: 0x00361210 File Offset: 0x0035F410
        public void Init()
        {
            if (!BJLuaObjHelper.IsSkipLuaHotfix && this.TryInitHotFix("") && this.m_Init_hotfix != null)
            {
                this.m_Init_hotfix.call(new object[]
                {
                    this
                });
                return;
            }
            BJLuaObjHelper.IsSkipLuaHotfix = false;
            EventTriggerListener.Get(this.ScrollView.gameObject).onEndDrag = new EventTriggerListener.VoidDelegate(this.OnEndDrag);
            List <ConfigDataBigExpressionInfo> combatExpressionInfo = this.GetCombatExpressionInfo();
            int count = combatExpressionInfo.Count;
            int num   = Mathf.CeilToInt((float)count / (float)this.m_pageCapacity);

            for (int i = 0; i < num; i++)
            {
                GameObject gameObject = GameObjectUtility.CloneGameObject(this.Page, this.Content.transform);
                this.m_pageList.Add(gameObject);
                gameObject = GameObjectUtility.CloneGameObject(this.PagePoint, this.PagePointNode.transform);
                this.m_pagePointStateControllerList.Add(gameObject.GetComponent <CommonUIStateController>());
            }
            for (int j = 0; j < count; j++)
            {
                int               index      = j / this.m_pageCapacity;
                GameObject        expression = GameObjectUtility.CloneGameObject(this.Expression, this.m_pageList[index].transform);
                BigExpressionItem item       = new BigExpressionItem(combatExpressionInfo[j], expression, new Action <int>(this.OnExpressionClick));
                this.bigExpressionItemList.Add(item);
            }
            this.ScrollView.horizontalNormalizedPosition = 0f;
            this.SetPagePointActivity(0);
        }
 // Token: 0x0600C342 RID: 49986 RVA: 0x003622AC File Offset: 0x003604AC
 public LuaExportHelper(BigExpressionItem owner)
 {
     this.m_owner = owner;
 }