Files
Werewolf/server/model/Person.js
2021-11-13 01:21:22 -05:00

14 lines
380 B
JavaScript

class Person {
constructor(id, name, userType, gameRole=null, gameRoleDescription=null, assigned=false) {
this.id = id;
this.socketId = null;
this.name = name;
this.userType = userType;
this.gameRole = gameRole;
this.gameRoleDescription = gameRoleDescription;
this.assigned = assigned;
}
}
module.exports = Person;