IAssemblyLoader.cs 229 B

123456789101112
  1. using System.Reflection;
  2. namespace Model
  3. {
  4. /// <summary>
  5. /// World的Componet实现该接口,World.Load会调用Load方法
  6. /// </summary>
  7. public interface IAssemblyLoader
  8. {
  9. void Load(Assembly assembly);
  10. }
  11. }