Exemplo n.º 1
0
 public void think(GameTime gt)
 {
     current.think(gt);
     ThinkDraw next = current.next();
     if (next != null)
         current = next;
 }
Exemplo n.º 2
0
 public Switcher(ThinkDraw td)
 {
     current = td;
 }