// Provide a default path to DWREngine if (DWREngine == null) { var DWREngine = {}; } DWREngine._defaultPath = '/dwr'; function GameOperationsService() { } GameOperationsService._path = '/dwr'; GameOperationsService.rateGame = function(p0, p1, callback) { DWREngine._execute(GameOperationsService._path, 'GameOperationsService', 'rateGame', p0, p1, callback); } GameOperationsService.clickGame = function(p0, callback) { DWREngine._execute(GameOperationsService._path, 'GameOperationsService', 'clickGame', p0, callback); }