mirror of
https://github.com/Leo501/CocosCreatorTutorial.git
synced 2026-05-08 14:48:40 +08:00
20 lines
301 B
JavaScript
20 lines
301 B
JavaScript
class ChatUserModel {
|
|
constructor() {
|
|
this.users = [];
|
|
}
|
|
|
|
setUsers(arr) {
|
|
delete this.users;
|
|
this.users = arr;
|
|
}
|
|
|
|
getUser() {
|
|
return this.users;
|
|
}
|
|
|
|
addUser(user) {
|
|
this.users.push(user);
|
|
}
|
|
}
|
|
|
|
module.exports = new ChatUserModel(); |