geode/loader/include/Geode/cocos/robtop/scene_nodes/CCSceneTransitionDelegate.h

18 lines
297 B
C
Raw Normal View History

2022-07-30 12:24:03 -04:00
#ifndef __CCSCENE_TRANSITION_DELEGATE_H__
#define __CCSCENE_TRANSITION_DELEGATE_H__
#include "../../include/ccMacros.h"
2022-07-30 12:24:03 -04:00
RT_ADD(
NS_CC_BEGIN
2023-08-04 17:28:44 -04:00
class CC_DLL CCSceneTransitionDelegate {
2023-08-04 16:36:54 -04:00
public:
2023-08-04 17:28:44 -04:00
virtual void sceneWillResume(void) {}
2022-07-30 12:24:03 -04:00
};
NS_CC_END
)
#endif //__CCSCENE_TRANSITION_DELEGATE_H__