Commiting to continue stuff at home
[swf-overlay.git] / PollEvent.as
1 package {
2
3 import flash.events.Event;
4
5 public class PollEvent extends Event {
6
7 public var pollTarget:Object;
8
9 public function PollEvent(type:String, target:Object) {
10 super(type);
11 this.pollTarget = target;
12 }
13 }
14
15 }