diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-03-10 20:17:29 +0200 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-03-11 00:48:34 +0200 |
commit | c030596364968f86f88546d3890e5b45929db47a (patch) | |
tree | 859f4e8bb525d8c2d5ec2569f1da498d8c14706f /src/party.h | |
parent | a1d38a0ab4095c192390dbf10bca949454fc4b59 (diff) | |
download | mv-c030596364968f86f88546d3890e5b45929db47a.tar.gz mv-c030596364968f86f88546d3890e5b45929db47a.tar.bz2 mv-c030596364968f86f88546d3890e5b45929db47a.tar.xz mv-c030596364968f86f88546d3890e5b45929db47a.zip |
Show message if some one join your party.
Diffstat (limited to 'src/party.h')
-rw-r--r-- | src/party.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/party.h b/src/party.h index 359f0a6b3..581410f7f 100644 --- a/src/party.h +++ b/src/party.h @@ -29,6 +29,7 @@ #include "utils/dtor.h" #include <map> +#include <set> #include <string> #include <vector> @@ -144,6 +145,8 @@ public: void getNames(std::vector<std::string> &names) const; + void getNamesSet(std::set<std::string> &names) const; + void sort(); static Party *getParty(short id); |