summaryrefslogtreecommitdiff
path: root/src/account.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/account.h')
-rw-r--r--src/account.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/account.h b/src/account.h
index cedc1bcc..8bdeb7ff 100644
--- a/src/account.h
+++ b/src/account.h
@@ -44,10 +44,12 @@ class Account
void setName(const std::string &name);
void setPassword(const std::string &password);
void setEmail(const std::string &email);
+ void setCharacters(const std::vector<Being*> &beings);
const std::string& getEmail();
const std::string& getPassword();
const std::string& getName();
+ Being* getCharacter(const std::string &name);
private:
std::string name; /**< Username */