9 lines
167 B
JavaScript
Raw Normal View History

2024-03-23 22:19:49 +00:00
export default class Sample {
constructor({ x, y, progress, segment }) {
this.x = x
this.y = y
this.progress = progress
this.segment = segment
}
}