/* * 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 UnityEngine; namespace CatLib { /// /// 框架默认的引导程序 /// internal class Bootstraps { /// /// 获取引导程序 /// /// Unity组件 /// 引导程序 public static IBootstrap[] GetBoostraps(Component component) { return new IBootstrap[] { new BootstrapTypeFinder(Assemblys.Assembly), new BootstrapProviderRegister(component, Providers.ServiceProviders), }; } } }