mirror of https://github.com/axmolengine/axmol.git
54 lines
843 B
JavaScript
54 lines
843 B
JavaScript
|
/**
|
||
|
* @module pluginx_nd91
|
||
|
*/
|
||
|
var plugin = plugin || {};
|
||
|
|
||
|
/**
|
||
|
* @class IAPNd91
|
||
|
*/
|
||
|
plugin.IAPNd91 = {
|
||
|
|
||
|
/**
|
||
|
* @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 initDeveloperInfo
|
||
|
* @param {TDeveloperInfo}
|
||
|
*/
|
||
|
initDeveloperInfo : function () {},
|
||
|
|
||
|
/**
|
||
|
* @method payForProduct
|
||
|
* @param {TProductInfo}
|
||
|
*/
|
||
|
payForProduct : function () {},
|
||
|
|
||
|
/**
|
||
|
* @method getSDKVersion
|
||
|
* @return A value converted from C/C++ "const char*"
|
||
|
*/
|
||
|
getSDKVersion : function () {},
|
||
|
|
||
|
/**
|
||
|
* @method setDebugMode
|
||
|
* @param {bool}
|
||
|
*/
|
||
|
setDebugMode : function () {},
|
||
|
|
||
|
};
|