2022-11-11 13:04:13 +00:00
|
|
|
class User {
|
|
|
|
constructor() {
|
2022-11-11 19:54:52 +00:00
|
|
|
this.username = "not logged in";
|
|
|
|
this.password = "there";
|
|
|
|
this.userId = 0;
|
2022-11-17 11:48:12 +00:00
|
|
|
this.tests;
|
2022-11-18 11:33:25 +00:00
|
|
|
this.leaderboard;
|
2022-11-11 13:04:13 +00:00
|
|
|
}
|
|
|
|
}
|