// Token: 0x06006F6E RID: 28526 RVA: 0x001F2B84 File Offset: 0x001F0D84
 public void InitStoreInfo(ProFixedStore pbStore)
 {
     if (!BJLuaObjHelper.IsSkipLuaHotfix && this.TryInitHotFix("") && this.m_InitStoreInfoProFixedStore_hotfix != null)
     {
         this.m_InitStoreInfoProFixedStore_hotfix.call(new object[]
         {
             this,
             pbStore
         });
         return;
     }
     BJLuaObjHelper.IsSkipLuaHotfix = false;
     if (this.FindStoreById(pbStore.StoreId) == null)
     {
         this.m_fixedStoreDS.InitStore(FixedStore.PBFixedStoreToFixedStore(pbStore));
     }
 }
    public static int PBFixedStoreToFixedStore_s(IntPtr l)
    {
        int result;

        try
        {
            ProFixedStore pbStore;
            LuaObject.checkType <ProFixedStore>(l, 1, out pbStore);
            FixedStore o = FixedStore.PBFixedStoreToFixedStore(pbStore);
            LuaObject.pushValue(l, true);
            LuaObject.pushValue(l, o);
            result = 2;
        }
        catch (Exception e)
        {
            result = LuaObject.error(l, e);
        }
        return(result);
    }