RobotModule.cs 293 B

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