Ejemplo n.º 1
0
 /// <summary>
 /// Removes an event listener from the Node.
 /// </summary>
 /// <param name="type">A string representing the event type being removed.</param>
 /// <param name="callback">The listener parameter indicates the EventListener function to be removed.</param>
 /// <param name="capture">Specifies whether the EventListener being removed was registered as a capturing listener or not.</param>
 public void RemoveEventListener(String type, EventListener callback = null, Boolean capture = false)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 2
0
        //TODO

        public void AddEventListener(string type, EventListener callback = null, bool capture = false)
        {
            throw new NotImplementedException();
        }