Example #1
0
 public static void RemovePressOut(CUIHandle[] array, OnPressOutDelegate OnDelegate)
 {
     if (array == null)
     {
         return;
     }
     foreach (CUIHandle handle in array)
     {
         handle.OnCPressOut -= OnDelegate;
     }
 }
Example #2
0
 public static void RemovePressOut(CUIHandle handle, OnPressOutDelegate OnDelegate)
 {
     handle.OnCPressOut -= OnDelegate;
 }
Example #3
0
 public static void AddPressOut(CUIHandle handle, OnPressOutDelegate OnDelegate)
 {
     handle.OnCPressOut += OnDelegate;
 }