~ubuntu-branches/ubuntu/trusty/manaplus/trusty-proposed

« back to all changes in this revision

Viewing changes to src/shopitem.h

  • Committer: Package Import Robot
  • Author(s): Patrick Matthäi
  • Date: 2013-08-13 10:18:49 UTC
  • mfrom: (1.1.7)
  • Revision ID: package-import@ubuntu.com-20130813101849-gna1clq5vxvb8p5f
Tags: 1.3.8.4-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
132
132
        { return mDisplayName; }
133
133
 
134
134
    protected:
135
 
        int mPrice;
136
135
        std::string mDisplayName;
137
 
        bool mShowQuantity;
138
136
 
139
137
        /**
140
138
         * Struct to keep track of duplicates.
145
143
            int quantity;
146
144
        } DuplicateItem;
147
145
        std::stack<DuplicateItem*> mDuplicates; /** <-- Stores duplicates */
 
146
        int mPrice;
 
147
        bool mShowQuantity;
148
148
};
149
149
 
150
150
#endif  // SHOPITEM_H