summaryrefslogtreecommitdiff
path: root/src/account.cpp
diff options
context:
space:
mode:
authorAaron Marks <nymacro@gmail.com>2005-05-23 13:51:42 +0000
committerAaron Marks <nymacro@gmail.com>2005-05-23 13:51:42 +0000
commiteec7111f5cb5a3785b1e2b67bbcd96e26680f18e (patch)
tree468ddb42fffac2028ed070ff883a6424ad9074b2 /src/account.cpp
parent7594437a36acbdc7fb0c1a0e56b0954910c2543c (diff)
downloadmanaserv-eec7111f5cb5a3785b1e2b67bbcd96e26680f18e.tar.gz
manaserv-eec7111f5cb5a3785b1e2b67bbcd96e26680f18e.tar.bz2
manaserv-eec7111f5cb5a3785b1e2b67bbcd96e26680f18e.tar.xz
manaserv-eec7111f5cb5a3785b1e2b67bbcd96e26680f18e.zip
Updated Storage class (added extra table to database).
Misc.
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)
{
}