Beispiel #1
0
 /// <summary>Sets the currently selected key.</summary>
 public extern void SetSelectedKey(FInputChord InSelectedKey);
Beispiel #2
0
/// <summary>
/// Test if the input chords are equal (A == B)
/// @param A - The chord to compare against
/// @param B - The chord to compare
/// @returns True if the chords are equal, false otherwise
/// </summary>
        public static bool EqualEqual_InputChordInputChord(FInputChord A, FInputChord B)
        {
            int ___ret = EqualEqual_InputChordInputChord(IntPtr.Zero, ref A, ref B);

            return(___ret != 0);
        }
Beispiel #3
0
 extern static int EqualEqual_InputChordInputChord(IntPtr _this, ref FInputChord A, ref FInputChord B);
 /// <summary>
 /// Test if the input chords are equal (A == B)
 /// @param A - The chord to compare against
 /// @param B - The chord to compare
 /// @returns True if the chords are equal, false otherwise
 /// </summary>
 public extern static bool EqualEqual_InputChordInputChord(FInputChord A, FInputChord B);
Beispiel #5
0
/// <summary>Sets the currently selected key.</summary>
        public void SetSelectedKey(FInputChord InSelectedKey)
        {
            CheckIsValid();
            SetSelectedKey(_this.Get(), ref InSelectedKey);
        }
Beispiel #6
0
 extern static void SetSelectedKey(IntPtr _this, ref FInputChord InSelectedKey);