BehaviorTreeModule.cs 264 B

12345678910111213
  1. using Microsoft.Practices.Prism.MefExtensions.Modularity;
  2. using Microsoft.Practices.Prism.Modularity;
  3. namespace Tree
  4. {
  5. [ModuleExport(moduleType: typeof (BehaviorTreeModule))]
  6. public class BehaviorTreeModule: IModule
  7. {
  8. public void Initialize()
  9. {
  10. }
  11. }
  12. }