Beispiel #1
0
 public MenuInputData(InputValue <float2> directionalNavigation, InputValue <float2> pointerNavigation, InputValue <bool> select, InputValue <bool> back)
 {
     this.directionalNavigation = directionalNavigation;
     this.pointerNavigation     = pointerNavigation;
     this.select = select;
     this.back   = back;
 }
Beispiel #2
0
 public bool Equals(InputValue <TValue> other)
 {
     return(this.value.Equals(other.value) &&
            duration == other.duration);
 }