diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-05-27 21:39:10 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-05-27 21:39:10 +0300 |
commit | f2dba51be00b6c67b6d1b8924cac8019a3bcd000 (patch) | |
tree | bc40b96606b74c80e60fb21064b1e8883dee2db6 /src/enums | |
parent | 420664f4025b261674e0cdea503d43fb95beae38 (diff) | |
download | plus-f2dba51be00b6c67b6d1b8924cac8019a3bcd000.tar.gz plus-f2dba51be00b6c67b6d1b8924cac8019a3bcd000.tar.bz2 plus-f2dba51be00b6c67b6d1b8924cac8019a3bcd000.tar.xz plus-f2dba51be00b6c67b6d1b8924cac8019a3bcd000.zip |
Add strong typed bool type Move.
Diffstat (limited to 'src/enums')
-rw-r--r-- | src/enums/simpletypes/move.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/enums/simpletypes/move.h b/src/enums/simpletypes/move.h new file mode 100644 index 000000000..95c2ff4a0 --- /dev/null +++ b/src/enums/simpletypes/move.h @@ -0,0 +1,28 @@ +/* + * The ManaPlus Client + * Copyright (C) 2015 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 ENUMS_SIMPLETYPES_MOVE_H +#define ENUMS_SIMPLETYPES_MOVE_H + +#include "enums/simpletypes/simpledefines.h" + +defBoolEnum(Move); + +#endif // ENUMS_SIMPLETYPES_MOVE_H |