diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-05-12 17:29:22 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-05-12 17:29:22 +0300 |
commit | 707a1570df9146c42411afb6dd7b2e9bc11b0251 (patch) | |
tree | 590ecfdf2cde1908c2264ab5370a0495b7aa83b7 /src/being/beingflag.h | |
parent | 81f319af0c6321474282de8928378366bbb6e44d (diff) | |
download | ManaVerse-707a1570df9146c42411afb6dd7b2e9bc11b0251.tar.gz ManaVerse-707a1570df9146c42411afb6dd7b2e9bc11b0251.tar.bz2 ManaVerse-707a1570df9146c42411afb6dd7b2e9bc11b0251.tar.xz ManaVerse-707a1570df9146c42411afb6dd7b2e9bc11b0251.zip |
Move being flags into separate file.
Diffstat (limited to 'src/being/beingflag.h')
-rw-r--r-- | src/being/beingflag.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/src/being/beingflag.h b/src/being/beingflag.h new file mode 100644 index 000000000..9c9a76ef4 --- /dev/null +++ b/src/being/beingflag.h @@ -0,0 +1,37 @@ +/* + * The ManaPlus Client + * 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 BEING_BEINGFLAG_H +#define BEING_BEINGFLAG_H + +namespace BeingFlag +{ + enum + { + SHOP = 1, + AWAY = 2, + INACTIVE = 4, + GENDER_OTHER = 32, + GM = 64, + GENDER_MALE = 128, + SPECIAL = 128 + 64 + }; +} +#endif // BEING_BEINGFLAG_H |