home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Diversos / pup_idol.swf / scripts / Box2D / Collision / Shapes / b2BoxDef.as next >
Encoding:
Text File  |  2008-08-07  |  341 b   |  19 lines

  1. package Box2D.Collision.Shapes
  2. {
  3.    import Box2D.Common.Math.b2Vec2;
  4.    
  5.    public class b2BoxDef extends b2ShapeDef
  6.    {
  7.        
  8.       
  9.       public var extents:b2Vec2;
  10.       
  11.       public function b2BoxDef()
  12.       {
  13.          super();
  14.          type = b2Shape.e_boxShape;
  15.          extents = new b2Vec2(1,1);
  16.       }
  17.    }
  18. }
  19.