forked from LeenkxTeam/LNXSDK
Update Files
This commit is contained in:
22
Kha/Tools/linux_arm64/std/flash/ui/GameInputDevice.hx
Normal file
22
Kha/Tools/linux_arm64/std/flash/ui/GameInputDevice.hx
Normal 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;
|
||||
}
|
Reference in New Issue
Block a user