~extremepopcorn/dhlib/dhlib_ep

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package fortress;

class LiveEvent extends gamex.BaseEvent
{
	static public var OBJECT_PLACED : String = "fort_placelive";	//objects have been put on the map
	static public var OBJECT_REMOVED : String = "fort_removelive";	//the objects have been removed
	
	public var liveObjs : Array<LiveObject>;	
	
	public function new( type : String )
	{
		liveObjs = new Array<LiveObject>();
		super( type );
	}	
}