Created
August 16, 2015 21:34
-
-
Save psobko/ae5ee9b447df65ccf414 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
overwolf.games.events.onError.addListener( | |
function (value) { | |
console.log('error'); | |
console.log(value); | |
} | |
); | |
overwolf.games.events.onInfoUpdates.addListener( | |
function (value) { | |
console.log('onInfoUpdates'); | |
console.log(value); | |
} | |
); | |
overwolf.games.events.onNewEvents.addListener( | |
function (value) { | |
console.log('onNewEvents'); | |
console.log(value); | |
}); | |
overwolf.games.onGameInfoUpdated.addListener( function (value) { | |
console.log('onGameInfoUpdated'); | |
console.log(value); | |
}); | |
overwolf.games.onGameLaunched.addListener( function (value) { | |
console.log('onGameLaunched'); | |
console.log(value); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment