6 lines
122 B
JavaScript
6 lines
122 B
JavaScript
|
export default class Player {
|
||
|
constructor() {
|
||
|
this.inventory = [];
|
||
|
this.currentRoom = "start";
|
||
|
}
|
||
|
}
|