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

« back to all changes in this revision

Viewing changes to src/resources/beinginfo.h

  • Committer: Package Import Robot
  • Author(s): Patrick Matthäi, Andrei Karas, Patrick Matthäi
  • Date: 2013-05-27 09:14:03 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20130527091403-4b1jceqok7g2v5on
Tags: 1.3.5.26-1
[ Andrei Karas ]
* Add new files to copyright file.
* Update homepage URL.

[ Patrick Matthäi ]
* New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
195
195
        void setAvatarId(const uint16_t id)
196
196
        { mAvatarId = id; }
197
197
 
 
198
        int getWidth() const
 
199
        { return mWidth; }
 
200
 
 
201
        int getHeight() const
 
202
        { return mHeight; }
 
203
 
 
204
        void setWidth(const int n)
 
205
        { mWidth = n; }
 
206
 
 
207
        void setHeight(const int n)
 
208
        { mHeight = n; }
 
209
 
198
210
        static void init();
199
211
 
200
212
        static void clear();
211
223
        int mTargetOffsetX;
212
224
        int mTargetOffsetY;
213
225
        int mMaxHP;
214
 
        bool mStaticMaxHP;
215
 
        bool mTargetSelection;
216
226
        int mSortOffsetY;
217
227
        int mDeadSortOffsetY;
218
228
        uint16_t mAvatarId;
 
229
        int mWidth;
 
230
        int mHeight;
 
231
        bool mStaticMaxHP;
 
232
        bool mTargetSelection;
219
233
};
220
234
 
221
235
typedef std::map<int, BeingInfo*> BeingInfos;