mirror of
https://github.com/Ratstail91/SANCTUM.git
synced 2025-11-28 18:14:28 +11:00
11 lines
278 B
JavaScript
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;
|
|
}
|
|
} |