home *** CD-ROM | disk | FTP | other *** search
/ Mobiclic 161 / MOBICLIC161.ISO / pc / DATA / DSS161 / DSS161_00 / DSS161_00.swf / scripts / dss161 / engineaddons / gamesprotos / DragDropParams.as < prev    next >
Text File  |  2014-01-15  |  458b  |  23 lines

  1. package dss161.engineaddons.gamesprotos
  2. {
  3.    public class DragDropParams
  4.    {
  5.        
  6.       
  7.       public var isDragging:Boolean = false;
  8.       
  9.       public var collision:Object;
  10.       
  11.       public var dropTargets:Array;
  12.       
  13.       public var dropTarget = null;
  14.       
  15.       public function DragDropParams()
  16.       {
  17.          this.collision = {"type":"hitTestPoint"};
  18.          this.dropTargets = [];
  19.          super();
  20.       }
  21.    }
  22. }
  23.