Example #1
0
 void IController.SetIdleController(IAdventureIdle adventure_idle)
 {
     _AdventureIdleBinder.Set(adventure_idle);
 }
Example #2
0
 void ICommandable.InterdictIdle(IAdventureIdle adventureIdle)
 {
     _Controller.SetIdleController(null);
 }
Example #3
0
 void ICommandable.AuthorizeIdle(IAdventureIdle adventureIdle)
 {
     _Controller.SetIdleController(adventureIdle);
 }
Example #4
0
 void ICommandable.InterdictIdle(IAdventureIdle adventureIdle)
 {
     (_Squad as ICommandable).InterdictIdle(adventureIdle);
 }
Example #5
0
 void ICommandable.AuthorizeIdle(IAdventureIdle adventureIdle)
 {
     (_Squad as ICommandable).AuthorizeIdle(adventureIdle);
 }
Example #6
0
 void IController.SetIdleController(IAdventureIdle adventure_idle)
 {
 }