diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-12-11 12:19:02 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-12-11 12:19:02 +0300 |
commit | 100148078f48bd98eadda1fe5269698b7b9b31e7 (patch) | |
tree | 049f482c40710f1ff244a148524ccfd171e302c8 /src/resources/beingmenuitem.h | |
parent | 527d63bfb4a2bd797a2a1f329a1b143945ebb8f6 (diff) | |
download | plus-100148078f48bd98eadda1fe5269698b7b9b31e7.tar.gz plus-100148078f48bd98eadda1fe5269698b7b9b31e7.tar.bz2 plus-100148078f48bd98eadda1fe5269698b7b9b31e7.tar.xz plus-100148078f48bd98eadda1fe5269698b7b9b31e7.zip |
Add missing file.
Diffstat (limited to 'src/resources/beingmenuitem.h')
-rw-r--r-- | src/resources/beingmenuitem.h | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/src/resources/beingmenuitem.h b/src/resources/beingmenuitem.h new file mode 100644 index 000000000..4aec4a0f2 --- /dev/null +++ b/src/resources/beingmenuitem.h @@ -0,0 +1,40 @@ +/* + * The ManaPlus Client + * Copyright (C) 2012-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 RESOURCES_BEINGMENUITEM_H +#define RESOURCES_BEINGMENUITEM_H + +#include "resources/image.h" + +#include <string> + +struct BeingMenuItem final +{ + BeingMenuItem(const std::string &name0, const std::string &command0) : + name(name0), + command(command0) + { + } + + std::string name; + std::string command; +}; + +#endif // RESOURCES_BEINGMENUITEM_H |