Files
SANCTUM/TextAdv/dungeonClass.js
2018-10-12 01:36:53 -05:00

11 lines
278 B
JavaScript

// Dungeons
module.exports = class DungeonRaidInstance {
constructor(room, players) {
this.room = room;
this.players = players;
this.location;
this.state = DungeonState.WAITING_FOR_USERS;
this.dialogObj;
this.isTyping;
}
}