diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-05-20 18:28:49 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-05-20 18:28:49 +0300 |
commit | 2f879820ee0e07b94a7c8189b8b7ab0720c3e208 (patch) | |
tree | 0d9c1a55cfb304c5e3fa5ea81b0202cb0e7f307d /src/net/partyshare.h | |
parent | d4b88a7ebce6222c34928c49925f972515593e89 (diff) | |
download | plus-2f879820ee0e07b94a7c8189b8b7ab0720c3e208.tar.gz plus-2f879820ee0e07b94a7c8189b8b7ab0720c3e208.tar.bz2 plus-2f879820ee0e07b94a7c8189b8b7ab0720c3e208.tar.xz plus-2f879820ee0e07b94a7c8189b8b7ab0720c3e208.zip |
Move partyshare into separate file.
Diffstat (limited to 'src/net/partyshare.h')
-rw-r--r-- | src/net/partyshare.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/src/net/partyshare.h b/src/net/partyshare.h new file mode 100644 index 000000000..e35ff6382 --- /dev/null +++ b/src/net/partyshare.h @@ -0,0 +1,37 @@ +/* + * The ManaPlus Client + * Copyright (C) 2009 The Mana World Development Team + * Copyright (C) 2009-2010 The Mana Developers + * Copyright (C) 2011-2014 The ManaPlus Developers + * + * This file is part of The ManaPlus Client. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef NET_PARTYSHARE_H +#define NET_PARTYSHARE_H + +namespace Net +{ + enum PartyShare + { + UNKNOWN = -1, + NO, + YES, + NOT_POSSIBLE = 2 + }; +} // namespace Net + +#endif // NET_PARTYSHARE_H |