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

14 lines
249 B
JavaScript

export class Bounce {
constructor() {
this.distance = 200;
}
load(data) {
if (!data) {
return;
}
if (data.distance !== undefined) {
this.distance = data.distance;
}
}
}