Update Files

This commit is contained in:
2025-01-22 16:18:30 +01:00
parent ed4603cf95
commit a36294b518
16718 changed files with 2960346 additions and 0 deletions

View File

@ -0,0 +1,22 @@
package flash.ui;
@:require(flash11_8) extern final class GameInputDevice {
@:flash.property var enabled(get,set) : Bool;
@:flash.property var id(get,never) : String;
@:flash.property var name(get,never) : String;
@:flash.property var numControls(get,never) : Int;
@:flash.property var sampleInterval(get,set) : Int;
function new() : Void;
function getCachedSamples(data : flash.utils.ByteArray, append : Bool = false) : Int;
function getControlAt(i : Int) : GameInputControl;
private function get_enabled() : Bool;
private function get_id() : String;
private function get_name() : String;
private function get_numControls() : Int;
private function get_sampleInterval() : Int;
private function set_enabled(value : Bool) : Bool;
private function set_sampleInterval(value : Int) : Int;
function startCachingSamples(numSamples : Int, controls : flash.Vector<String>) : Void;
function stopCachingSamples() : Void;
static final MAX_BUFFER_SIZE : Int;
}