/* * This file is part of the CatLib package. * * (c) CatLib * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * * Document: http://catlib.io/ */ using System.Collections.Generic; namespace CatLib.Editor { /// /// 项目自动添加的程序集自动加载方案 /// internal static class Assemblys { /// /// 项目自动添加的程序集自动加载方案 /// 分数值越小越优先 /// public static IDictionary Assembly { get { return new Dictionary { //{ "Assembly-CSharp" , 0 }, }; } } } }