/// <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)); }
public void MarkChanged(InputSource source) { changedSources.Add(source); }