Listens to OSC events and executes callback functions.
// exampleconst oscListener = new broox.mediaPlayer.OscListener();oscListener.add('/start', () => console.log('Start'));
Creates an instance of the OscListener class.
Adds a callback function to the given event.
Event name to listen to.
Function to execute when the event is recieved.
Generated using TypeDoc
Listens to OSC events and executes callback functions.