| Index: nacltoons/src/AppDelegate.cc
|
| diff --git a/nacltoons/src/AppDelegate.cc b/nacltoons/src/AppDelegate.cc
|
| index 7dbb20e3f0371d7622dd83ba60b5f4e1260e86fd..9cdab04004d6bcebb0fe0c87d110ab41a7a49c79 100644
|
| --- a/nacltoons/src/AppDelegate.cc
|
| +++ b/nacltoons/src/AppDelegate.cc
|
| @@ -2,7 +2,7 @@
|
| // 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;
|
| }
|
|
|