forked from Hri7566/mpp-server-dev2
23 lines
454 B
JavaScript
23 lines
454 B
JavaScript
class Crown {
|
|
constructor (id, _id) {
|
|
this.participantId = id;
|
|
this.userId = _id;
|
|
this.time = Date.now();
|
|
this.startPos = {
|
|
x: 50,
|
|
y: 50
|
|
}
|
|
this.endPos = {
|
|
x: Crown.generateRandomPos(),
|
|
y: Crown.generateRandomPos()
|
|
}
|
|
}
|
|
|
|
static generateRandomPos() {
|
|
return Math.floor(Math.random() * 10000) / 100;
|
|
}
|
|
}
|
|
|
|
module.exports = Crown;
|
|
|