Files
wnmj/Classes/Scenes/PlayerScene.h
2026-02-13 14:34:15 +08:00

31 lines
462 B
C++
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#pragma once
#include "TipNode.h"
#include "GameFrameBase.h"
USING_NS_CC;
using namespace cocos2d::ui;
class PlayerScene : public TipNode
{
public:
PlayerScene();
~PlayerScene();
public:
CREATE_FUNC(PlayerScene);
virtual bool init();
virtual void onEnter();
virtual void onEnterTransitionDidFinish();
virtual void onExit();
void showPlayerInfo(GamePlayer* player = nullptr);
public:
Node* rootPanel; //¸ù¹<C3B9>üc
ImageView* m_ImageView;
};