home *** CD-ROM | disk | FTP | other *** search
- package asCode
- {
- import flash.geom.*;
-
- public class bubbleNode
- {
- private var xVel:Number = 0;
-
- private var yVel:Number = 0;
-
- private var loc:Point;
-
- public function bubbleNode(param1:*)
- {
- loc = new Point();
- super();
- loc.x = param1.x;
- loc.y = param1.y;
- }
-
- public function getLoc() : Point
- {
- return new Point(loc.x,loc.y);
- }
- }
- }
-
-