Add: player login with maestro

This commit is contained in:
2018-10-28 14:21:03 +09:00
parent 5cb864058f
commit 0dc052dd79
4 changed files with 55 additions and 6 deletions
+8
View File
@@ -19,6 +19,14 @@ SessionStorageManager.prototype.getMaestroID = function() {
return sessionStorage.getItem("maestroID");
}
// maestro ID
SessionStorageManager.prototype.setMaestroName = function(value) {
sessionStorage.setItem("maestroName", value);
}
SessionStorageManager.prototype.getMaestroName = function() {
return sessionStorage.getItem("maestroName");
}
// maestro account type
SessionStorageManager.prototype.setMaestroAccountType = function(value) {
sessionStorage.setItem("maestroAccountType", value);