public void addScreen(ScreenId id, Screen s, bool update = true, bool draw = true) { s.DoUpdate = update; s.DoDraw = draw; s.LoadContent(); screens.Add(id, s); }