diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-10-30 23:57:54 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-10-30 23:57:54 +0300 |
commit | 382d24526919eafc08df19169046fdae190e10da (patch) | |
tree | 5eee2825a6a0dd282990c1a6a2f4a8e924c8083d /src/resources/npcinventoryinfo.h | |
parent | be1962973deaa161491b6592cbf21eb3e6700cc9 (diff) | |
download | plus-382d24526919eafc08df19169046fdae190e10da.tar.gz plus-382d24526919eafc08df19169046fdae190e10da.tar.bz2 plus-382d24526919eafc08df19169046fdae190e10da.tar.xz plus-382d24526919eafc08df19169046fdae190e10da.zip |
Add support for npc dialog inventory theming from npc skin.
Diffstat (limited to 'src/resources/npcinventoryinfo.h')
-rw-r--r-- | src/resources/npcinventoryinfo.h | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/src/resources/npcinventoryinfo.h b/src/resources/npcinventoryinfo.h new file mode 100644 index 000000000..494499851 --- /dev/null +++ b/src/resources/npcinventoryinfo.h @@ -0,0 +1,40 @@ +/* + * The ManaPlus Client + * Copyright (C) 2011-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 RESOURCES_NPCINVENTORYINFO_H +#define RESOURCES_NPCINVENTORYINFO_H + +#include <string> + +#include "localconsts.h" + +struct NpcInventoryInfo final +{ + NpcInventoryInfo() : + cell(), + columns(100000) + { + } + + std::string cell; + int columns; +}; + +#endif // RESOURCES_NPCINVENTORYINFO_H |