/// <summary>
 /// Gets if the value of the type has changed.
 /// </summary>
 /// <param name="type">input type</param>
 /// <returns></returns>
 public bool HasValueChanged(InputSource type)
 {
     return(changedValues.Contains(type));
 }
Example #2
0
 public void MarkChanged(InputSource source)
 {
     changedSources.Add(source);
 }