mirror of https://github.com/axmolengine/axmol.git
17 lines
277 B
JavaScript
17 lines
277 B
JavaScript
|
/**
|
||
|
* @method ${func_name}
|
||
|
#if $is_constructor
|
||
|
* @constructor
|
||
|
#end if
|
||
|
#if str($ret_type) != "void"
|
||
|
* @return A value converted from C/C++ "${ret_type}"
|
||
|
#end if
|
||
|
#if $min_args > 0
|
||
|
#for $arg in $arguments
|
||
|
* @param {$arg}
|
||
|
#end for
|
||
|
#end if
|
||
|
*/
|
||
|
${func_name} : function () {},
|
||
|
|