assassin-bug/src/engine/player.js

6 lines
122 B
JavaScript
Raw Normal View History

2021-11-04 19:58:37 +00:00
export default class Player {
constructor() {
this.inventory = [];
this.currentRoom = "start";
}
}