home *** CD-ROM | disk | FTP | other *** search
- package core.objects
- {
- public class PlatformDef extends BaseObjectDef
- {
-
-
- public var width:Number;
-
- public var height:Number;
-
- public function PlatformDef(x:Number, y:Number, bornTime:Number, width:Number, height:Number)
- {
- this.width = width;
- this.height = height;
- super(x,y,bornTime);
- }
- }
- }
-