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