BehaviorTreeModel.cs 433 B

123456789101112131415161718
  1. using System.ComponentModel.Composition;
  2. using Microsoft.Practices.Prism.ViewModel;
  3. using NLog;
  4. using System.Windows.Input;
  5. using Microsoft.Practices.Prism.Commands;
  6. using System.Collections.ObjectModel;
  7. using System.Windows;
  8. using Google.ProtocolBuffers;
  9. namespace BehaviorTree
  10. {
  11. [Export(typeof(BehaviorTreeViewModel))]
  12. [PartCreationPolicy(CreationPolicy.NonShared)]
  13. class BehaviorTreeViewModel : NotificationObject
  14. {
  15. }
  16. }