Esempio n. 1
0
 /// <summary>
 /// Remove a certain listener for the event
 /// </summary>
 /// <param name="p_listener">The Listener that will be removed</param>
 public void UnregisterListener(RotationEventListener p_listener)
 {
     _listeners.Remove(p_listener);
 }
Esempio n. 2
0
 /// <summary>
 /// Add a certain listener for the event
 /// </summary>
 /// <param name="p_listener">The Listener that will be added</param>
 public void RegisterListener(RotationEventListener p_listener)
 {
     _listeners.Add(p_listener);
 }