home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Esportes / CrossingCup.swf / scripts / __Packages / sandy / util / Rectangle.as < prev   
Text File  |  2007-12-11  |  212b  |  11 lines

  1. class sandy.util.Rectangle
  2. {
  3.    function Rectangle(px, py, pwidth, pheight)
  4.    {
  5.       this.x = px || 0;
  6.       this.y = py || 0;
  7.       this.width = pwidth || 0;
  8.       this.height = pheight || 0;
  9.    }
  10. }
  11.