public LadderInfo(Constants.LadderType type, MyVector3 initPosition, float initAngle, float timeout, LadderMovementData movement, LadderRotateData rotate) { this.type = type; this.initPosition = initPosition; this.initAngle = initAngle; this.timeout = timeout; this.movement = movement; this.rotate = rotate; }
public LadderInfo(LadderInfo other) { this.type = other.type; this.initPosition = other.initPosition; this.initAngle = other.initAngle; this.timeout = other.timeout; this.movement = other.movement; this.rotate = other.rotate; }