diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-05-24 20:44:21 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-05-24 20:44:21 +0300 |
commit | 9c6e1619b7416d85fa031036b70ebff4357d65ca (patch) | |
tree | 95f23cf84d35449f850c1a43e01620f9654d9199 /src/enums | |
parent | d73c6ed345178e21621f9f86d1b6b2bceddf6625 (diff) | |
download | plus-9c6e1619b7416d85fa031036b70ebff4357d65ca.tar.gz plus-9c6e1619b7416d85fa031036b70ebff4357d65ca.tar.bz2 plus-9c6e1619b7416d85fa031036b70ebff4357d65ca.tar.xz plus-9c6e1619b7416d85fa031036b70ebff4357d65ca.zip |
Move type UseArgs into separate file.
Diffstat (limited to 'src/enums')
-rw-r--r-- | src/enums/simpletypes/simpletypes.h | 2 | ||||
-rw-r--r-- | src/enums/simpletypes/useargs.h | 30 |
2 files changed, 30 insertions, 2 deletions
diff --git a/src/enums/simpletypes/simpletypes.h b/src/enums/simpletypes/simpletypes.h index ea98531ed..a34465232 100644 --- a/src/enums/simpletypes/simpletypes.h +++ b/src/enums/simpletypes/simpletypes.h @@ -25,6 +25,4 @@ #include "localconsts.h" -defBoolEnum(UseArgs); - #endif // ENUMS_SIMPLETYPES_SIMPLETYPES_H diff --git a/src/enums/simpletypes/useargs.h b/src/enums/simpletypes/useargs.h new file mode 100644 index 000000000..163f449f4 --- /dev/null +++ b/src/enums/simpletypes/useargs.h @@ -0,0 +1,30 @@ +/* + * 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_USEARGS_H +#define ENUMS_SIMPLETYPES_USEARGS_H + +#include "enums/simpletypes/simpledefines.h" + +#include "localconsts.h" + +defBoolEnum(UseArgs); + +#endif // ENUMS_SIMPLETYPES_USEARGS_H |