package { import flash.events.Event; public class GameObjectEvent extends Event { public static const ADDED:String = "GameObjectEvent.ADDED"; public var object:GameObjectModel; public function GameObjectEvent(type:String, object:GameObjectModel) { super(type); this.object = object; } override public function clone():Event { return new GameObjectEvent(type, object); } } }