Example #1
0
 public ExtendedDictionary(string i_TagName, string i_Question, eAnswerTypes i_ExpectedAnswerType, float i_MaxVaue)
 {
     r_TagName            = i_TagName;
     r_Question           = i_Question;
     r_ExpectedAnswerType = i_ExpectedAnswerType;
     r_MaxValue           = i_MaxVaue;
 }
Example #2
0
 // Constructor for Enums
 public ExtendedDictionary(string i_TagName, string i_Question, eAnswerTypes i_ExpectedAnswerType, int i_FirstEnumIndex, int i_LastEnumIndex)
 {
     r_TagName            = i_TagName;
     r_Question           = i_Question;
     r_ExpectedAnswerType = i_ExpectedAnswerType;
     r_FirstEnumIndex     = i_FirstEnumIndex;
     r_LastEnumIndex      = i_LastEnumIndex;
 }
Example #3
0
 public ExtendedDictionary(string i_TagName, string i_Question, eAnswerTypes i_ExpectedAnswerType)
 {
     r_TagName            = i_TagName;
     r_Question           = i_Question;
     r_ExpectedAnswerType = i_ExpectedAnswerType;
 }