mirror of https://github.com/axmolengine/axmol.git
66 lines
1.0 KiB
JavaScript
66 lines
1.0 KiB
JavaScript
/**
|
|
* @module pluginx_admob
|
|
*/
|
|
var plugin = plugin || {};
|
|
|
|
/**
|
|
* @class AdsAdmob
|
|
*/
|
|
plugin.AdsAdmob = {
|
|
|
|
/**
|
|
* @method addTestDevice
|
|
* @param {const char*}
|
|
*/
|
|
addTestDevice : function () {},
|
|
|
|
/**
|
|
* @method hideBannerAd
|
|
*/
|
|
hideBannerAd : function () {},
|
|
|
|
/**
|
|
* @method showBannerAd
|
|
* @param {cocos2d::plugin::ProtocolAds::EBannerPos}
|
|
* @param {int}
|
|
*/
|
|
showBannerAd : function () {},
|
|
|
|
/**
|
|
* @method getPluginName
|
|
* @return A value converted from C/C++ "const char*"
|
|
*/
|
|
getPluginName : function () {},
|
|
|
|
/**
|
|
* @method getPluginVersion
|
|
* @return A value converted from C/C++ "const char*"
|
|
*/
|
|
getPluginVersion : function () {},
|
|
|
|
/**
|
|
* @method init
|
|
* @return A value converted from C/C++ "bool"
|
|
*/
|
|
init : function () {},
|
|
|
|
/**
|
|
* @method initAppInfo
|
|
* @param {TAppInfo}
|
|
*/
|
|
initAppInfo : function () {},
|
|
|
|
/**
|
|
* @method getSDKVersion
|
|
* @return A value converted from C/C++ "const char*"
|
|
*/
|
|
getSDKVersion : function () {},
|
|
|
|
/**
|
|
* @method setDebugMode
|
|
* @param {bool}
|
|
*/
|
|
setDebugMode : function () {},
|
|
|
|
};
|