File: Timer.hx

package info (click to toggle)
haxe 1%3A4.3.6-3
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 46,180 kB
  • sloc: ml: 137,199; ansic: 2,448; makefile: 456; java: 386; cs: 336; cpp: 318; python: 318; sh: 75; objc: 64; php: 50; xml: 31; javascript: 11
file content (18 lines) | stat: -rw-r--r-- 689 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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;
}