2023-02-17 11:06:01 +01:00

18 lines
369 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Bounce = void 0;
class Bounce {
constructor() {
this.distance = 200;
}
load(data) {
if (!data) {
return;
}
if (data.distance !== undefined) {
this.distance = data.distance;
}
}
}
exports.Bounce = Bounce;