summaryrefslogtreecommitdiff
path: root/src/resources/npcbuttoninfo.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/resources/npcbuttoninfo.h')
-rw-r--r--src/resources/npcbuttoninfo.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/resources/npcbuttoninfo.h b/src/resources/npcbuttoninfo.h
index 19de87891..d54b7d94c 100644
--- a/src/resources/npcbuttoninfo.h
+++ b/src/resources/npcbuttoninfo.h
@@ -30,15 +30,21 @@ struct NpcButtonInfo final
NpcButtonInfo() :
name(),
value(),
+ image(),
x(0),
- y(0)
+ y(0),
+ imageWidth(16),
+ imageHeight(16)
{
}
std::string name;
std::string value;
+ std::string image;
int x;
int y;
+ int imageWidth;
+ int imageHeight;
};
#endif // RESOURCES_NPCBUTTONINFO_H