/* * 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 { /// /// 框架会自动添加的程序集自动加载方案 /// internal class Assemblys { /// /// 框架会自动添加的程序集自动加载方案 /// public static IDictionary Assembly { get { return new Dictionary { }; } } } }