mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-23 16:07:52 -05:00
18 lines
No EOL
297 B
C++
Vendored
18 lines
No EOL
297 B
C++
Vendored
#ifndef __CCSCENE_TRANSITION_DELEGATE_H__
|
|
#define __CCSCENE_TRANSITION_DELEGATE_H__
|
|
|
|
#include "../../include/ccMacros.h"
|
|
|
|
RT_ADD(
|
|
NS_CC_BEGIN
|
|
|
|
class CC_DLL CCSceneTransitionDelegate {
|
|
public:
|
|
virtual void sceneWillResume(void) {}
|
|
};
|
|
|
|
NS_CC_END
|
|
)
|
|
|
|
|
|
#endif //__CCSCENE_TRANSITION_DELEGATE_H__
|