Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(39)

Side by Side Diff: nacltoons/src/app_delegate.h

Issue 12220140: [nacltoons] Cleanup initial game code. (Closed) Base URL: https://nativeclient-sdk.googlecode.com/svn/trunk/src
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | nacltoons/src/app_delegate.cc » ('j') | nacltoons/src/app_delegate.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 #ifndef APP_DELEGATE_H_ 4 #ifndef APP_DELEGATE_H_
5 #define APP_DELEGATE_H_ 5 #define APP_DELEGATE_H_
6 6
7 #include "cocos2d.h" 7 #include "cocos2d.h"
8 8
9 /** 9 /**
10 * The cocos2d-x application entry point. 10 * The cocos2d-x application entry point.
11 */ 11 */
12 class AppDelegate : private cocos2d::CCApplication { 12 class AppDelegate : private cocos2d::CCApplication {
13 public: 13 public:
14 AppDelegate() {} 14 AppDelegate() {}
15 15
16 virtual bool applicationDidFinishLaunching(); 16 virtual bool applicationDidFinishLaunching();
17 virtual void applicationDidEnterBackground() {} 17 virtual void applicationDidEnterBackground() {}
18 virtual void applicationWillEnterForeground() {} 18 virtual void applicationWillEnterForeground() {}
19 }; 19 };
20 20
21 #endif // !APP_DELEGATE_H_ 21 #endif // APP_DELEGATE_H_
OLDNEW
« no previous file with comments | « no previous file | nacltoons/src/app_delegate.cc » ('j') | nacltoons/src/app_delegate.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698