Пример #1
0
 public void think(GameTime gt)
 {
     current.think(gt);
     ThinkDraw next = current.next();
     if (next != null)
         current = next;
 }
Пример #2
0
 public Switcher(ThinkDraw td)
 {
     current = td;
 }