From fa53e1b1c6d2c15db12c7946767383c0be04bd5e Mon Sep 17 00:00:00 2001
From: client_Wu Xijin <364452445@qq.com>
Date: 星期四, 21 二月 2019 12:02:28 +0800
Subject: [PATCH] 3335 物品相关类型重构

---
 System/GeneralConfig/GeneralDefine.cs |   10 ++++++++++
 1 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/System/GeneralConfig/GeneralDefine.cs b/System/GeneralConfig/GeneralDefine.cs
index 47a1d84..2b75e81 100644
--- a/System/GeneralConfig/GeneralDefine.cs
+++ b/System/GeneralConfig/GeneralDefine.cs
@@ -9,6 +9,11 @@
 
 public class GeneralDefine
 {
+    public static int initDepotGridCount { get; private set; }
+    public static int maxDepotGridCount { get; private set; }
+    public static int initBagGridCount { get; private set; }
+    public static int maxBagGridCount { get; private set; }
+
     public static int greatMasterStartLV { get; private set; }
     public static int playerMaxLevel { get; private set; }
     public static float potentialUpSuccessRecommend { get; private set; }
@@ -181,6 +186,11 @@
     {
         try
         {
+            initDepotGridCount = GetInt("InitDepotCellCount");
+            maxDepotGridCount = GetInt("MaxDepotCellCount");
+            initBagGridCount = GetInt("InitBagCellCount");
+            maxBagGridCount = GetInt("MaxBagCellCount");
+
             CompareEquipPlaces = GetIntArray("EquipUpType");
             greatMasterStartLV = GetInt("GreatMasterStartLV");
             playerMaxLevel = GetInt("PlayerMaxLV");

--
Gitblit v1.8.0