Example #1
0
 public Gaze_InputsMapEntry(Gaze_InputTypes _type)
 {
     inputType = _type;
 }
Example #2
0
 public Gaze_InputsMapEntry(Gaze_InputTypes _type, bool _valid)
 {
     inputType = _type;
     valid     = _valid;
 }
Example #3
0
 public Gaze_InputsMapEntry()
 {
     // assign a default value for the input if none specified at construction
     inputType = Gaze_InputTypes.A_BUTTON;
     valid     = false;
 }