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

Unified Diff: nacltoons/src/AppDelegate.cc

Issue 12226130: [nacltoons] Add initial frontend and physics game scenes. (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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « nacltoons/src/AppDelegate.h ('k') | nacltoons/src/FrontEnd.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: nacltoons/src/AppDelegate.cc
diff --git a/nacltoons/src/AppDelegate.cc b/nacltoons/src/AppDelegate.cc
index 7dbb20e3f0371d7622dd83ba60b5f4e1260e86fd..8ea2a511220bbcc072074025446403157ede2812 100644
--- a/nacltoons/src/AppDelegate.cc
+++ b/nacltoons/src/AppDelegate.cc
@@ -1,8 +1,8 @@
-// Copyright (c) 2013 The Native Client Authors. All rights reserved.
+// Copyright (c) 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "AppDelegate.h"
-#include "GameplayScene.h"
+#include "FrontEnd.h"
#include "SimpleAudioEngine.h"
USING_NS_CC;
@@ -14,7 +14,7 @@ bool AppDelegate::applicationDidFinishLaunching() {
director->setOpenGLView(view);
director->setDisplayStats(true);
- CCScene* scene = Gameplay::scene();
+ CCScene* scene = FrontEnd::scene();
director->runWithScene(scene);
return true;
}
« no previous file with comments | « nacltoons/src/AppDelegate.h ('k') | nacltoons/src/FrontEnd.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698