Esempio n. 1
0
 public StageMachine()
 {
     _Current = this;
 }
Esempio n. 2
0
 public void Push(Regulus.Utility.IBootable bootable)
 {
     _Current.Shutdown();
     bootable.Launch();
     _Current = bootable;
 }