Update AIR externs

This commit is contained in:
Joshua Granick
2017-08-25 14:04:53 -07:00
parent 194bfde219
commit 03d66367c8
70 changed files with 239 additions and 143 deletions

View File

@@ -0,0 +1,7 @@
package flash.sampler;
@:final extern class ScriptMember {
var id(default,never) : Float;
var propertyName(default,never) : String;
function new() : Void;
}

View File

@@ -0,0 +1,11 @@
package flash.sampler;
extern class ScriptSampler {
function new() : Void;
static function getFilename(p1 : Float) : String;
static function getInvocationCount(p1 : Float) : Float;
static function getMembers(p1 : Float) : flash.Vector<ScriptMember>;
static function getName(p1 : Float) : String;
static function getSize(p1 : Float) : Float;
static function getType(p1 : Float) : String;
}