Exemple #1
0
 public CombatEventDispatcher(IPaperNotificationSystem notificationSystem)
 {
     NotificationSystem = notificationSystem;
 }
Exemple #2
0
 public TurnEventDispatcher(IPaperNotificationSystem notificationSystem)
 {
     NotificationSystem = notificationSystem;
 }
 private SceneTurnHandler(IPaperNotificationSystem notificationSystem)
 {
     TurnEventDispatcher = new TurnEventDispatcher(notificationSystem);
 }
Exemple #4
0
 public EnemyAISystem(IPaperNotificationSystem notificationSystem, CombatController combatController)
 {
     CombatController    = combatController;
     EventDispatcher     = new CombatEventDispatcher(notificationSystem);
     TurnEventDispatcher = new TurnEventDispatcher(notificationSystem);
 }