mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-21 01:36:02 +08:00
17 lines
352 B
C++
17 lines
352 B
C++
#ifndef _APPDELEGATE_H_
|
|
#define _APPDELEGATE_H_
|
|
|
|
#include "cocos2d.h"
|
|
|
|
class AppDelegate: private cocos2d::CCApplication {
|
|
public:
|
|
AppDelegate ();
|
|
virtual ~AppDelegate ();
|
|
|
|
virtual bool applicationDidFinishLaunching ();
|
|
virtual void applicationDidEnterBackground ();
|
|
virtual void applicationWillEnterForeground ();
|
|
};
|
|
|
|
#endif // _APPDELEGATE_H_
|