using NJDOTNET.Trivia; namespace NJDOTNET.Trivia.Server { internal class TestGameController : GameController { public TestGameController(Game game) : base(game) { } public override void Start() { base.Start(); RunThroughQuestions(); } private void RunThroughQuestions() { Question q; while ((q = game.NextQuestion()) != null) TriggerNextQuestion(q); End(); } } }