summaryrefslogtreecommitdiff
path: root/src/account.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/account.cpp')
-rw-r--r--src/account.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/account.cpp b/src/account.cpp
index e2ca1c75..3ab1c701 100644
--- a/src/account.cpp
+++ b/src/account.cpp
@@ -23,7 +23,11 @@
#include "account.h"
-Account::Account()
+Account(const std::string &aName, const std::string aPassword,
+ const std::string &aEmail, Being aPlayer[ACC_MAX_CHARS])
+ : name(aName),
+ password(aPassword),
+ email(aEmail)
{
}