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