TimerEvent.hx 259 B

12345678
  1. package flash.events;
  2. extern class TimerEvent extends Event {
  3. function new(type : String, bubbles : Bool = false, cancelable : Bool = false) : Void;
  4. function updateAfterEvent() : Void;
  5. static final TIMER : String;
  6. static final TIMER_COMPLETE : String;
  7. }