package;
@:jsRequire("MyCustomCompontHx")
extern class MyCustomCompontHx_ex extends global.cc.Component {
function new();
var power:Dynamic ;
function getPower():Dynamic;
}
after
package;
@:jsRequire("MyCustomCompontHx")
extern class MyCustomCompontHx_ex extends global.cc.Component {
function new();
var power:Int;
function getPower():Int;
}
before
after