Ejemplo n.º 1
0
 public void RemoveActionCallbackReceiver(IInputActionCallbackReceiver receiver)
 {
     if (receiver == null)
     {
         throw new ArgumentNullException("receiver");
     }
     m_ActionCallbacks.Remove(receiver);
 }
Ejemplo n.º 2
0
 public void AddActionCallbackReceiver(IInputActionCallbackReceiver receiver)
 {
     if (receiver == null)
     {
         throw new ArgumentNullException("receiver");
     }
     m_ActionCallbacks.Append(receiver);
 }