mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-26 17:36:05 -05:00
17 lines
No EOL
306 B
C++
Vendored
17 lines
No EOL
306 B
C++
Vendored
#ifndef __CCSCENE_TRANSITION_DELEGATE_H__
|
|
#define __CCSCENE_TRANSITION_DELEGATE_H__
|
|
|
|
#include "../../include/ccMacros.h"
|
|
|
|
NS_CC_BEGIN
|
|
|
|
// @note RobTop Addition
|
|
class CC_DLL CCSceneTransitionDelegate {
|
|
public:
|
|
virtual void sceneWillResume(void) {}
|
|
};
|
|
|
|
NS_CC_END
|
|
|
|
|
|
#endif //__CCSCENE_TRANSITION_DELEGATE_H__
|