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

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