32 lines
817 B
C++
32 lines
817 B
C++
|
|
/// 2011.02.08 - prodongi
|
|
|
|
#ifndef _SUICharacterInfoSubAddedWnd_h_
|
|
#define _SUICharacterInfoSubAddedWnd_h_
|
|
|
|
//#include "SUIWnd.h"
|
|
#include "CharacterInfo/SUICharacterInfoSubMainWnd.h"
|
|
|
|
class SUICharacterInfoSubAddedWnd : public SUICharacterInfoSubMainWnd
|
|
{
|
|
public:
|
|
SUICharacterInfoSubAddedWnd(SGameManager* pGameManager) : SUICharacterInfoSubMainWnd(pGameManager) {};
|
|
virtual ~SUICharacterInfoSubAddedWnd() {};
|
|
|
|
virtual bool InitControls( KPoint kPos );
|
|
virtual void refreshAll();
|
|
virtual void refreshPropensity();
|
|
virtual void refreshGameScore(SMSG_INSTANCE_GAME_SCORE* msg);
|
|
|
|
protected:
|
|
// bintitle. 2011.11.07. int => __int64.
|
|
int calcMoralGagePos(__int64 moral) const;
|
|
virtual void setExpand(bool expand, bool applyParent = true);
|
|
|
|
protected:
|
|
KUIWnd* m_moralGage;
|
|
KUIWnd* m_moralGageCube;
|
|
};
|
|
|
|
|
|
#endif |