@awayfl/awayfl-player
Version:
Flash Player emulator for executing SWF files (published for FP versions 6 and up) in javascript
17 lines (16 loc) • 408 B
JavaScript
import { b2Joint } from '../Joints';
/**
* Joint definitions are used to construct joints.
* @see b2Joint
*/
var b2JointDef = /** @class */ (function () {
function b2JointDef() {
this.type = b2Joint.e_unknownJoint;
this.userData = null;
this.bodyA = null;
this.bodyB = null;
this.collideConnected = false;
}
return b2JointDef;
}());
export { b2JointDef };