axmol/templates/js-template-default/frameworks/runtime-src/Classes/AppDelegate.h

48 lines
1.1 KiB
C
Raw Normal View History

2015-04-15 17:49:33 +08:00
//
// GCTestAppDelegate.h
// GCTest
//
// Created by Rohan Kuruvilla on 06/08/2012.
// Copyright __MyCompanyName__ 2012. All rights reserved.
//
#ifndef _APP_DELEGATE_H_
#define _APP_DELEGATE_H_
#include "platform/CCApplication.h"
/**
@brief The cocos2d Application.
2016-05-25 22:25:38 +08:00
Private inheritance here hides part of interface from Director.
2015-04-15 17:49:33 +08:00
*/
class AppDelegate : private cocos2d::Application
{
public:
AppDelegate();
virtual ~AppDelegate();
void initGLContextAttrs() override;
/**
@brief Implement Director and Scene init code here.
@return true Initialize success, app continue.
@return false Initialize failed, app terminate.
*/
virtual bool applicationDidFinishLaunching();
/**
2016-05-25 22:25:38 +08:00
@brief Called when the application moves to the background
2015-04-15 17:49:33 +08:00
@param the pointer of the application
*/
virtual void applicationDidEnterBackground();
/**
2016-05-25 22:25:38 +08:00
@brief Called when the application reenters the foreground
2015-04-15 17:49:33 +08:00
@param the pointer of the application
*/
virtual void applicationWillEnterForeground();
};
#endif // _APP_DELEGATE_H_