summaryrefslogtreecommitdiff
path: root/src/routers/vault/types/GameAccount.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/routers/vault/types/GameAccount.js')
-rw-r--r--src/routers/vault/types/GameAccount.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/routers/vault/types/GameAccount.js b/src/routers/vault/types/GameAccount.js
index fa94808..87f5336 100644
--- a/src/routers/vault/types/GameAccount.js
+++ b/src/routers/vault/types/GameAccount.js
@@ -1,3 +1,5 @@
+const Char = require("./Char.js");
+
/**
* represents a generic game account
*/
@@ -8,7 +10,9 @@ module.exports = class GameAccount {
userid = "";
/** the email address associated with the account */
email = null;
- /** Char[] */
+ /** game characters
+ * @type {Char[]}
+ */
chars = [];
/** the last time the account logged in */
lastLogin = null;