home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Diversos / Beez.swf / scripts / core / objects / RectDef.as < prev    next >
Encoding:
Text File  |  2008-09-03  |  489 b   |  22 lines

  1. package core.objects
  2. {
  3.    public class RectDef extends BaseObjectDef
  4.    {
  5.        
  6.       
  7.       public var width:Number;
  8.       
  9.       public var height:Number;
  10.       
  11.       public var rotation:Number;
  12.       
  13.       public function RectDef(x:Number, y:Number, bornTime:Number, width:Number, height:Number, rotation:Number)
  14.       {
  15.          this.width = width;
  16.          this.height = height;
  17.          this.rotation = rotation;
  18.          super(x,y,bornTime);
  19.       }
  20.    }
  21. }
  22.