12345678910111213141516171819202122232425 |
- //
- // RUPopupDelegate.h
- // red_utils
- //
- // Created by ZhengSong on 2023/6/9.
- //
- #ifndef RUPopupDelegate_h
- #define RUPopupDelegate_h
- #include "RUDefine.h"
- NS_RU_BEGIN
- class PopupDelegate {
- public:
- PopupDelegate() = default;
- virtual ~PopupDelegate() = default;
- virtual void onStartPopup(const std::string& windowName) = 0; //UI弹出
- virtual void onEndPopup(const std::string& windowName) = 0; //UI弹入
- };
- NS_RU_END
- #endif /* RUPopupDelegate_h */
|