Ejemplo n.º 1
0
 // Token: 0x06006F6B RID: 28523 RVA: 0x001F29F0 File Offset: 0x001F0BF0
 public void InitStores(List <ProFixedStore> pbStores)
 {
     if (!BJLuaObjHelper.IsSkipLuaHotfix && this.TryInitHotFix("") && this.m_InitStoresList ` 1_hotfix != null)
     {
         this.m_InitStoresList ` 1_hotfix.call(new object[]
         {
             this,
             pbStores
         });
         return;
     }
     BJLuaObjHelper.IsSkipLuaHotfix = false;
     this.m_fixedStoreDS.ClearInitedData();
     this.m_fixedStoreDS.InitStores(FixedStore.PBFixedStoresToFixedStores(pbStores));
 }
    public static int PBFixedStoresToFixedStores_s(IntPtr l)
    {
        int result;

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