00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #ifndef __AWINCHANGETEAM_H__
00012 #define __AWINCHANGETEAM_H__
00013
00014 #include "Mod_Aeternis_Client/Mod_Aeternis_ClientDll.h"
00015 #include "Interface/Win.h"
00016 #include "Interface/Button.h"
00017
00018
00019 class MOD_AETERNIS_CLIENT_API KAWinChangeTeam : public KWin
00020 {
00021 protected:
00022 KSHADER m_hBackGround;
00023 KButton* m_pButtonTeam1;
00024 KButton* m_pButtonTeam2;
00025 KButton* m_pButtonTeam3;
00026
00027 public:
00028 KAWinChangeTeam( KWin* pFather, KFPt& Pos, KFPt& Size, KInterface* pInterface );
00029 ~KAWinChangeTeam();
00030
00031 virtual void Display();
00032 virtual void Manage();
00033
00034
00035 virtual void Load();
00036 virtual void Unload();
00037 };
00038
00039 #endif __AWINCHANGETEAM_H__