forked from LeenkxTeam/LNXSDK
Update Files
This commit is contained in:
18
Kha/Tools/linux_x64/std/flash/utils/Timer.hx
Normal file
18
Kha/Tools/linux_x64/std/flash/utils/Timer.hx
Normal file
@ -0,0 +1,18 @@
|
||||
package flash.utils;
|
||||
|
||||
extern class Timer extends flash.events.EventDispatcher {
|
||||
@:flash.property var currentCount(get,never) : Int;
|
||||
@:flash.property var delay(get,set) : Float;
|
||||
@:flash.property var repeatCount(get,set) : Int;
|
||||
@:flash.property var running(get,never) : Bool;
|
||||
function new(delay : Float, repeatCount : Int = 0) : Void;
|
||||
private function get_currentCount() : Int;
|
||||
private function get_delay() : Float;
|
||||
private function get_repeatCount() : Int;
|
||||
private function get_running() : Bool;
|
||||
function reset() : Void;
|
||||
private function set_delay(value : Float) : Float;
|
||||
private function set_repeatCount(value : Int) : Int;
|
||||
function start() : Void;
|
||||
function stop() : Void;
|
||||
}
|
Reference in New Issue
Block a user