public DebugFiberYieldResponse(DebugFiberYieldResponseType type, int lineNumber, string value) //break,variableLookup
 {
     Type = type;
     LineNumber = lineNumber;
     Value = value;
 }
 public DebugFiberYieldResponse(DebugFiberYieldResponseType type, string contents) //log
 {
     Type = type;
     Contents = contents;
 }
 public DebugFiberYieldResponse(DebugFiberYieldResponseType type) //gameOver
 {
     Type = type;
 }
 public DebugFiberYieldResponse(DebugFiberYieldResponseType type, CardGameQuestion question) //answerQuestion
 {
     Type = type;
     Question = question;
 }