This commit is contained in:
cyw
2026-02-13 14:34:15 +08:00
parent 6ed1953e24
commit f36e3f9df2
5206 changed files with 573757 additions and 16 deletions

View File

@@ -0,0 +1,40 @@
#ifndef _ZJH_OpenResultScene_H_
#define _ZJH_OpenResultScene_H_
#include "cocos2d.h"
#include "ui/CocosGUI.h"
#include "Define.h"
#include "Types.h"
#include "ZJH_CMD.h"
#include "ZJH_OpenResultItem.h"
USING_NS_CC;
using namespace ui;
class ZJHOpenResultScene : public Node
{
public:
ZJHOpenResultScene();
virtual ~ZJHOpenResultScene();
bool init();
//´´˝¨;
CREATE_FUNC(ZJHOpenResultScene);
void updateUIData(uint32 dwRoomID, std::vector<tagZJHOpenResultItem>* pAryItem, bool bUnionGoldOpen = false);
void updateTime();
private:
ImageView* _MainPanel;
Layout* _FinishListView;
Button* _btnShare;
Button* _btnLobby;
Text* _txtTime;
Text* _txtRoomID;
};
#endif