Example #1
0
 void IController.SetChoiceController(IAdventureChoice adventure_choice)
 {
     _AdventureChoiceBinder.Set(adventure_choice);
 }
Example #2
0
 void ICommandable.AuthorizeChoice(IAdventureChoice adventure_choice)
 {
     (_Squad as ICommandable).AuthorizeChoice(adventure_choice);
 }
Example #3
0
 void ICommandable.InterdictChoice(IAdventureChoice adventure_choice)
 {
     _Controller.SetChoiceController(null);
 }
Example #4
0
 void ICommandable.AuthorizeChoice(IAdventureChoice adventure_choice)
 {
     _Controller.SetChoiceController(adventure_choice);
 }
Example #5
0
 void ICommandable.InterdictChoice(IAdventureChoice adventure_choice)
 {
     (_Squad as ICommandable).InterdictChoice(adventure_choice);
 }
Example #6
0
 void IController.SetChoiceController(IAdventureChoice adventure_choice)
 {
 }