projects
/
potlatch2.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
drag multiple items
[potlatch2.git]
/
net
/
systemeD
/
halcyon
/
connection
/
EntityEvent.as
1
package net.systemeD.halcyon.connection {
2
3
import flash.events.Event;
4
5
public class EntityEvent extends Event {
6
protected var item:Entity;
7
8
public function EntityEvent(type:String, item:Entity) {
9
super(type);
10
this.item = item;
11
}
12
13
public function get entity():Entity {
14
return item;
15
}
16
}
17
18
}