diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-06-11 16:17:36 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-06-11 16:17:36 +0300 |
commit | dde2d920e07d651b9571ada0b4c6a8cc58e4982a (patch) | |
tree | a1b7b52d9f35222ff7e30dcf458191bb4ed33ace /src/gui/charcreatedialog.h | |
parent | b6df3c3999d4be067e7314e3887e583c13ad1624 (diff) | |
download | plus-dde2d920e07d651b9571ada0b4c6a8cc58e4982a.tar.gz plus-dde2d920e07d651b9571ada0b4c6a8cc58e4982a.tar.bz2 plus-dde2d920e07d651b9571ada0b4c6a8cc58e4982a.tar.xz plus-dde2d920e07d651b9571ada0b4c6a8cc58e4982a.zip |
add partial support for player look.
can change look in char creation dialog, but cant render different look.
Diffstat (limited to 'src/gui/charcreatedialog.h')
-rw-r--r-- | src/gui/charcreatedialog.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/gui/charcreatedialog.h b/src/gui/charcreatedialog.h index a7cb5105c..82e7d7261 100644 --- a/src/gui/charcreatedialog.h +++ b/src/gui/charcreatedialog.h @@ -100,6 +100,8 @@ class CharCreateDialog final : public Window, void updateRace(); + void updateLook(); + CharSelectDialog *mCharSelectDialog; TextField *mNameField; @@ -116,6 +118,10 @@ class CharCreateDialog final : public Window, Button *mPrevRaceButton; Label *mRaceLabel; Label *mRaceNameLabel; + Button *mNextLookButton; + Button *mPrevLookButton; + Label *mLookLabel; + Label *mLookNameLabel; Button *mActionButton; Button *mRotateButton; @@ -137,6 +143,8 @@ class CharCreateDialog final : public Window, int mRace; int mLook; + int mMinLook; + int mMaxLook; Being *mPlayer; PlayerBox *mPlayerBox; |