// Token: 0x06012539 RID: 75065 RVA: 0x004B52FC File Offset: 0x004B34FC
        public void ShowRaffleRewardPanel(bool isShow, Action onEnd)
        {
            if (!BJLuaObjHelper.IsSkipLuaHotfix && this.TryInitHotFix("") && this.m_ShowRaffleRewardPanelBooleanAction_hotfix != null)
            {
                this.m_ShowRaffleRewardPanelBooleanAction_hotfix.call(new object[]
                {
                    this,
                    isShow,
                    onEnd2
                });
                return;
            }
            BJLuaObjHelper.IsSkipLuaHotfix = false;
            Action onEnd = onEnd2;
            RaffleRewardUIController $this = this;

            this.m_isShow = isShow;
            if (isShow)
            {
                base.gameObject.SetActive(true);
                UIUtility.SetUIStateOpen(this.UIStateCtrl, "Show", onEnd, true, true);
            }
            else
            {
                UIUtility.SetUIStateOpen(this.UIStateCtrl, "Close", delegate
                {
                    $this.gameObject.SetActive(false);
                    if (onEnd != null)
                    {
                        onEnd();
                    }
                }, true, true);
            }
        }
 // Token: 0x06012551 RID: 75089 RVA: 0x004B5994 File Offset: 0x004B3B94
 public LuaExportHelper(RaffleRewardUIController owner)
 {
     this.m_owner = owner;
 }