public void think(GameTime gt) { current.think(gt); ThinkDraw next = current.next(); if (next != null) current = next; }
public Switcher(ThinkDraw td) { current = td; }