Example #1
0
 public void SetState(AbstractBootState state)
 {
     State = state;
     State.SetComputer(this);
 }
Example #2
0
 public Computer()
 {
     State = new StartState();
     State.SetComputer(this);
 }