Skip to content

Instantly share code, notes, and snippets.

@squeedee
Created June 10, 2010 21:33
Show Gist options
  • Save squeedee/433666 to your computer and use it in GitHub Desktop.
Save squeedee/433666 to your computer and use it in GitHub Desktop.
package com.visfleet.maps.events.refresh {
import flash.events.Event;
public class StartRefreshesEvent extends Event {
public static const START:String = "startRefreshesEvent";
public function StartRefreshesEvent() {
super(START);
}
override public function clone():Event {
return new StartRefreshesEvent();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment