| 12345678910111213141516171819202122232425262728293031323334 | using System.Collections;using UnityEngine;namespace GFGEditor{    public class ExcelConfig    {        /// <summary>        /// 存放excel表文件夹的的路径,本例excel表放在了"Assets/Excel/"当中        /// </summary>        public const string excelsFolderPath = "../../../gfg/tools/Config";        /// <summary>        /// 存放编辑器序列化文件的文件夹路径        /// </summary>        public const string configCodePath = "Assets/Game/CSShare/GFG/HotUpdate/ExcelConfig/GenCode/Item/";        /// <summary>        /// 存放编辑器序列化文件的文件夹路径        /// </summary>        public const string configArrayCodePath = "Assets/Game/CSShare/GFG//HotUpdate/ExcelConfig/GenCode/Array/";        /// <summary>        /// 存放Excel转化CS文件的文件夹路径        /// </summary>        public const string templatePath = "Assets/Editor/Excel/Template/";        /// <summary>        ///         /// </summary>        public const string CONFIG_ARRAY_TEMPLATE = "{0}{1}Array";    }}
 |