diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5244495 --- /dev/null +++ b/.gitignore @@ -0,0 +1,13 @@ + +libs/sqlite3.c +libs/sqlite3.h + +proj.win32/OzgGameRPG.sdf +proj.win32/Debug.win32/ +proj.win32/OzgGameRPG.v12.suo + +proj.android/gen/ +proj.android/bin/ +proj.android/libs/ +proj.android/obj/ +proj.android/assets/ diff --git a/Classes/AppDelegate.cpp b/Classes/AppDelegate.cpp index 0dcb226..f9f5a11 100644 --- a/Classes/AppDelegate.cpp +++ b/Classes/AppDelegate.cpp @@ -22,15 +22,15 @@ bool AppDelegate::applicationDidFinishLaunching() { pDirector->setOpenGLView(pEGLView); - CCEGLView::sharedOpenGLView()->setDesignResolutionSize(960, 640, kResolutionShowAll); - + CCEGLView::sharedOpenGLView()->setDesignResolutionSize(960, 640, kResolutionShowAll); + // turn on display FPS pDirector->setDisplayStats(false); // set FPS. the default value is 1.0/60 if you don't call this pDirector->setAnimationInterval(1.0 / 60); - //将数据库复制到可写目录 + //将数据库复制到可写目录 string dbSrc = CCFileUtils::sharedFileUtils()->fullPathForFilename(GAME_SYS_DB); string dbDes = CCFileUtils::sharedFileUtils()->getWritablePath(); dbDes.append(GAME_SYS_DB); @@ -54,7 +54,7 @@ bool AppDelegate::applicationDidFinishLaunching() { //初始化背景音乐和效果音的默认大小值 SimpleAudioEngine::sharedEngine()->setBackgroundMusicVolume(CCUserDefault::sharedUserDefault()->getFloatForKey(GAME_BG_AUDIO_VOLUME, 1.0)); SimpleAudioEngine::sharedEngine()->setEffectsVolume(CCUserDefault::sharedUserDefault()->getFloatForKey(GAME_EFFECT_AUDIO_VOLUME, 1.0)); - + // create a scene. it's an autorelease object CCScene *pScene = RPGStartSceneLayer::scene(); @@ -69,7 +69,7 @@ void AppDelegate::applicationDidEnterBackground() { CCDirector::sharedDirector()->stopAnimation(); // if you use SimpleAudioEngine, it must be pause - // SimpleAudioEngine::sharedEngine()->pauseBackgroundMusic(); + SimpleAudioEngine::sharedEngine()->pauseBackgroundMusic(); } // this function will be called when the app is active again @@ -77,5 +77,5 @@ void AppDelegate::applicationWillEnterForeground() { CCDirector::sharedDirector()->startAnimation(); // if you use SimpleAudioEngine, it must resume here - // SimpleAudioEngine::sharedEngine()->resumeBackgroundMusic(); + SimpleAudioEngine::sharedEngine()->resumeBackgroundMusic(); } diff --git a/Classes/AppMacros.h b/Classes/AppMacros.h new file mode 100644 index 0000000..9e1743b --- /dev/null +++ b/Classes/AppMacros.h @@ -0,0 +1,56 @@ +#ifndef __APPMACROS_H__ +#define __APPMACROS_H__ + +#include "cocos2d.h" + +/* For demonstrating using one design resolution to match different resources, + or one resource to match different design resolutions. + + [Situation 1] Using one design resolution to match different resources. + Please look into Appdelegate::applicationDidFinishLaunching. + We check current device frame size to decide which resource need to be selected. + So if you want to test this situation which said in title '[Situation 1]', + you should change ios simulator to different device(e.g. iphone, iphone-retina3.5, iphone-retina4.0, ipad, ipad-retina), + or change the window size in "proj.XXX/main.cpp" by "CCEGLView::setFrameSize" if you are using win32 or linux plaform + and modify "proj.mac/AppController.mm" by changing the window rectangle. + + [Situation 2] Using one resource to match different design resolutions. + The coordinates in your codes is based on your current design resolution rather than resource size. + Therefore, your design resolution could be very large and your resource size could be small. + To test this, just define the marco 'TARGET_DESIGN_RESOLUTION_SIZE' to 'DESIGN_RESOLUTION_2048X1536' + and open iphone simulator or create a window of 480x320 size. + + [Note] Normally, developer just need to define one design resolution(e.g. 960x640) with one or more resources. + */ + +#define DESIGN_RESOLUTION_480X320 0 +#define DESIGN_RESOLUTION_1024X768 1 +#define DESIGN_RESOLUTION_2048X1536 2 + +/* If you want to switch design resolution, change next line */ +#define TARGET_DESIGN_RESOLUTION_SIZE DESIGN_RESOLUTION_480X320 + +typedef struct tagResource +{ + cocos2d::CCSize size; + char directory[100]; +}Resource; + +static Resource smallResource = { cocos2d::CCSizeMake(480, 320), "iphone" }; +static Resource mediumResource = { cocos2d::CCSizeMake(1024, 768), "ipad" }; +static Resource largeResource = { cocos2d::CCSizeMake(2048, 1536), "ipadhd" }; + +#if (TARGET_DESIGN_RESOLUTION_SIZE == DESIGN_RESOLUTION_480X320) +static cocos2d::CCSize designResolutionSize = cocos2d::CCSizeMake(480, 320); +#elif (TARGET_DESIGN_RESOLUTION_SIZE == DESIGN_RESOLUTION_1024X768) +static cocos2d::CCSize designResolutionSize = cocos2d::CCSizeMake(1024, 768); +#elif (TARGET_DESIGN_RESOLUTION_SIZE == DESIGN_RESOLUTION_2048X1536) +static cocos2d::CCSize designResolutionSize = cocos2d::CCSizeMake(2048, 1536); +#else +#error unknown target design resolution! +#endif + +// The font size 24 is designed for small resolution, so we should change it to fit for current design resolution +#define TITLE_FONT_SIZE (cocos2d::CCEGLView::sharedOpenGLView()->getDesignResolutionSize().width / smallResource.size.width * 24) + +#endif /* __APPMACROS_H__ */ diff --git a/README.md b/README.md index 8776b4a..c42ffb2 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ sqlite3需要自行下载,然后把sqlite3.h和sqlite3.c复制到libs里面( ================ -编译时需要将本游戏的目录复制到cocos2d-x-2.2.5/projects/。 +编译时需要将本游戏的目录复制到cocos2d-x-2.2.x/projects/。 ================ diff --git a/android版本的部署步骤(未完成).txt b/android版本的部署步骤(未完成).txt index a74cf7d..23e86da 100644 --- a/android版本的部署步骤(未完成).txt +++ b/android版本的部署步骤(未完成).txt @@ -1,20 +1,20 @@ -1,引用项目cocos2d-x-2.2.5/cocos2dx/platform/android/java +1,引用项目cocos2d-x-2.2.6/cocos2dx/platform/android/java 2,设置eclipse的C/C++ Build 修改android-ndk-r9d/ndk-build.cmd 3,proj.android/jni/Application.mk 加入APP_PLATFORM := android-8 4,proj.android/jni/Android.mk 加入 -$(call import-add-path, D:\root\Temp\cocos2d-x-2.2.5) -$(call import-add-path, D:\root\Temp\cocos2d-x-2.2.5\cocos2dx\platform\third_party\android\prebuilt) +$(call import-add-path, D:\root\Temp\cocos2d-x-2.2.6) +$(call import-add-path, D:\root\Temp\cocos2d-x-2.2.6\cocos2dx\platform\third_party\android\prebuilt) (根据实际路径修改) 5,proj.android/jni/Android.mk 修改 -FILE_LIST := hellocpp/main.cpp -FILE_LIST += $(wildcard $(LOCAL_PATH)/../../libs/*.c) -FILE_LIST += $(wildcard $(LOCAL_PATH)/../../libs/*.cpp) -FILE_LIST += $(wildcard $(LOCAL_PATH)/../../libs/JsonBox/src/*.cpp) -FILE_LIST += $(wildcard $(LOCAL_PATH)/../../Classes/*.cpp) +LOCAL_SRC_FILES := hellocpp/main.cpp +LOCAL_SRC_FILES += $(wildcard $(LOCAL_PATH)/../../libs/*.c) +LOCAL_SRC_FILES += $(wildcard $(LOCAL_PATH)/../../libs/*.cpp) +LOCAL_SRC_FILES += $(wildcard $(LOCAL_PATH)/../../libs/JsonBox/src/*.cpp) +LOCAL_SRC_FILES += $(wildcard $(LOCAL_PATH)/../../Classes/*.cpp) LOCAL_C_INCLUDES := $(LOCAL_PATH)/../../libs LOCAL_C_INCLUDES += $(LOCAL_PATH)/../../libs/JsonBox/include @@ -33,4 +33,4 @@ LOCAL_C_INCLUDES += $(LOCAL_PATH)/../../Classes 目前遇到的问题: A/libc(2412): Fatal signal 11 (SIGSEGV) at 0x00000000 (code=1), thread 2412 (game.OzgGameRPG) -执行以下命令也不知道是什么问题,adb logcat|ndk-stack -sym D:\root\Temp\cocos2d-x-2.2.5\projects\OzgGameRPG\proj.android\obj\local\armeabi +执行以下命令也不知道是什么问题,adb logcat|ndk-stack -sym D:\root\Temp\cocos2d-x-2.2.6\projects\OzgGameRPG\proj.android\obj\local\armeabi diff --git a/proj.android/.classpath b/proj.android/.classpath index bc76ffa..a4763d1 100644 --- a/proj.android/.classpath +++ b/proj.android/.classpath @@ -1,10 +1,8 @@ - - - - - - - - - - + + + + + + + + diff --git a/proj.android/.cproject b/proj.android/.cproject index 792d71e..3514d06 100644 --- a/proj.android/.cproject +++ b/proj.android/.cproject @@ -18,7 +18,7 @@ - + diff --git a/proj.android/.project b/proj.android/.project index 923bdd3..a488369 100644 --- a/proj.android/.project +++ b/proj.android/.project @@ -102,7 +102,7 @@ Classes 2 - COCOS2DX/projects/OzgGameRPG/Classes + COCOS2DX/projects/OzgGameRPG/Classes cocos2dx @@ -112,7 +112,7 @@ extensions 2 - COCOS2DX/extensions + COCOS2DX/extensions scripting diff --git a/proj.android/.settings/org.eclipse.jdt.core.prefs b/proj.android/.settings/org.eclipse.jdt.core.prefs deleted file mode 100644 index 48ab4c6..0000000 --- a/proj.android/.settings/org.eclipse.jdt.core.prefs +++ /dev/null @@ -1,4 +0,0 @@ -eclipse.preferences.version=1 -org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 -org.eclipse.jdt.core.compiler.compliance=1.6 -org.eclipse.jdt.core.compiler.source=1.6 diff --git a/proj.android/AndroidManifest.xml b/proj.android/AndroidManifest.xml index e97d73f..79e2509 100644 --- a/proj.android/AndroidManifest.xml +++ b/proj.android/AndroidManifest.xml @@ -28,6 +28,6 @@ android:normalScreens="true"/> - - + + diff --git a/proj.android/jni/Android.mk b/proj.android/jni/Android.mk index b02d647..b55529e 100644 --- a/proj.android/jni/Android.mk +++ b/proj.android/jni/Android.mk @@ -6,12 +6,12 @@ LOCAL_MODULE := cocos2dcpp_shared LOCAL_MODULE_FILENAME := libcocos2dcpp -FILE_LIST := hellocpp/main.cpp -FILE_LIST += $(wildcard $(LOCAL_PATH)/../../libs/*.c) -FILE_LIST += $(wildcard $(LOCAL_PATH)/../../libs/*.cpp) -FILE_LIST += $(wildcard $(LOCAL_PATH)/../../libs/JsonBox/src/*.cpp) -FILE_LIST += $(wildcard $(LOCAL_PATH)/../../Classes/*.cpp) - +LOCAL_SRC_FILES := hellocpp/main.cpp +LOCAL_SRC_FILES += $(wildcard $(LOCAL_PATH)/../../libs/*.c) +LOCAL_SRC_FILES += $(wildcard $(LOCAL_PATH)/../../libs/*.cpp) +LOCAL_SRC_FILES += $(wildcard $(LOCAL_PATH)/../../libs/JsonBox/src/*.cpp) +LOCAL_SRC_FILES += $(wildcard $(LOCAL_PATH)/../../Classes/*.cpp) + LOCAL_C_INCLUDES := $(LOCAL_PATH)/../../libs LOCAL_C_INCLUDES += $(LOCAL_PATH)/../../libs/JsonBox/include LOCAL_C_INCLUDES += $(LOCAL_PATH)/../../Classes @@ -24,8 +24,8 @@ LOCAL_WHOLE_STATIC_LIBRARIES += cocos_extension_static include $(BUILD_SHARED_LIBRARY) -$(call import-add-path, D:\root\Temp\cocos2d-x-2.2.5) -$(call import-add-path, D:\root\Temp\cocos2d-x-2.2.5\cocos2dx\platform\third_party\android\prebuilt) +$(call import-add-path, D:\root\Temp\cocos2d-x-2.2.6) +$(call import-add-path, D:\root\Temp\cocos2d-x-2.2.6\cocos2dx\platform\third_party\android\prebuilt) $(call import-module,cocos2dx) $(call import-module,cocos2dx/platform/third_party/android/prebuilt/libcurl) diff --git a/proj.android/project.properties b/proj.android/project.properties index 40b1d00..d5f90eb 100644 --- a/proj.android/project.properties +++ b/proj.android/project.properties @@ -8,6 +8,6 @@ # project structure. # Project target. -target=android-19 +target=android-8 android.library.reference.1=../../../cocos2dx/platform/android/java diff --git a/proj.ios/Default-667h@2x.png b/proj.ios/Default-667h@2x.png new file mode 100644 index 0000000..a0f61ec Binary files /dev/null and b/proj.ios/Default-667h@2x.png differ diff --git a/proj.ios/Default-736h@3x.png b/proj.ios/Default-736h@3x.png new file mode 100644 index 0000000..dadccee Binary files /dev/null and b/proj.ios/Default-736h@3x.png differ diff --git a/proj.ios/Info.plist b/proj.ios/Info.plist index 40f8d7a..5a2393f 100644 --- a/proj.ios/Info.plist +++ b/proj.ios/Info.plist @@ -36,6 +36,89 @@ ???? CFBundleVersion 1.0 + UILaunchImages + + + UILaunchImageMinimumOSVersion + 8.0 + UILaunchImageName + Default + UILaunchImageOrientation + Portrait + UILaunchImageSize + {320, 480} + + + UILaunchImageMinimumOSVersion + 8.0 + UILaunchImageName + Default + UILaunchImageOrientation + Landscape + UILaunchImageSize + {320, 480} + + + UILaunchImageMinimumOSVersion + 8.0 + UILaunchImageName + Default-568h + UILaunchImageOrientation + Portrait + UILaunchImageSize + {320, 568} + + + UILaunchImageMinimumOSVersion + 8.0 + UILaunchImageName + Default-568h + UILaunchImageOrientation + Landscape + UILaunchImageSize + {320, 568} + + + UILaunchImageMinimumOSVersion + 8.0 + UILaunchImageName + Default-667h + UILaunchImageOrientation + Portrait + UILaunchImageSize + {375, 667} + + + UILaunchImageMinimumOSVersion + 8.0 + UILaunchImageName + Default-667h + UILaunchImageOrientation + Landscape + UILaunchImageSize + {375, 667} + + + UILaunchImageMinimumOSVersion + 8.0 + UILaunchImageName + Default-736h + UILaunchImageOrientation + Portrait + UILaunchImageSize + {414, 736} + + + UILaunchImageMinimumOSVersion + 8.0 + UILaunchImageName + Default-736h + UILaunchImageOrientation + Landscape + UILaunchImageSize + {414, 736} + + LSRequiresIPhoneOS UIAppFonts diff --git a/proj.ios/OzgGameRPG.xcodeproj/project.pbxproj b/proj.ios/OzgGameRPG.xcodeproj/project.pbxproj index 4a75da2..1a3de44 100644 --- a/proj.ios/OzgGameRPG.xcodeproj/project.pbxproj +++ b/proj.ios/OzgGameRPG.xcodeproj/project.pbxproj @@ -133,6 +133,83 @@ 15A3DAED1682F8A6002FB0C5 /* CocosDenshion.m in Sources */ = {isa = PBXBuildFile; fileRef = 15A3DA8B1682F8A6002FB0C5 /* CocosDenshion.m */; }; 15A3DAEE1682F8A6002FB0C5 /* SimpleAudioEngine.mm in Sources */ = {isa = PBXBuildFile; fileRef = 15A3DA8C1682F8A6002FB0C5 /* SimpleAudioEngine.mm */; }; 15A3DAEF1682F8A6002FB0C5 /* SimpleAudioEngine_objc.m in Sources */ = {isa = PBXBuildFile; fileRef = 15A3DA8E1682F8A6002FB0C5 /* SimpleAudioEngine_objc.m */; }; + 15C0B54B196D412F007F909D /* CCActionEaseEx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B47D196D412E007F909D /* CCActionEaseEx.cpp */; }; + 15C0B54C196D412F007F909D /* CCActionFrame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B47F196D412E007F909D /* CCActionFrame.cpp */; }; + 15C0B54D196D412F007F909D /* CCActionFrameEasing.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B481196D412E007F909D /* CCActionFrameEasing.cpp */; }; + 15C0B54E196D412F007F909D /* CCActionManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B483196D412E007F909D /* CCActionManager.cpp */; }; + 15C0B54F196D412F007F909D /* CCActionNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B485196D412E007F909D /* CCActionNode.cpp */; }; + 15C0B550196D412F007F909D /* CCActionObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B487196D412F007F909D /* CCActionObject.cpp */; }; + 15C0B551196D412F007F909D /* CCActionTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B48A196D412F007F909D /* CCActionTimeline.cpp */; }; + 15C0B552196D412F007F909D /* CCActionTimelineCache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B48C196D412F007F909D /* CCActionTimelineCache.cpp */; }; + 15C0B553196D412F007F909D /* CCFrame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B48E196D412F007F909D /* CCFrame.cpp */; }; + 15C0B554196D412F007F909D /* CCNodeReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B490196D412F007F909D /* CCNodeReader.cpp */; }; + 15C0B555196D412F007F909D /* CCTimeLine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B492196D412F007F909D /* CCTimeLine.cpp */; }; + 15C0B556196D412F007F909D /* CCArmatureAnimation.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B497196D412F007F909D /* CCArmatureAnimation.cpp */; }; + 15C0B557196D412F007F909D /* CCProcessBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B499196D412F007F909D /* CCProcessBase.cpp */; }; + 15C0B558196D412F007F909D /* CCTween.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B49B196D412F007F909D /* CCTween.cpp */; }; + 15C0B559196D412F007F909D /* CCArmature.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B49D196D412F007F909D /* CCArmature.cpp */; }; + 15C0B55A196D412F007F909D /* CCBone.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B49F196D412F007F909D /* CCBone.cpp */; }; + 15C0B55B196D412F007F909D /* CCDatas.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B4A2196D412F007F909D /* CCDatas.cpp */; }; + 15C0B55C196D412F007F909D /* CCBatchNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B4A5196D412F007F909D /* CCBatchNode.cpp */; }; + 15C0B55D196D412F007F909D /* CCDecorativeDisplay.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B4A7196D412F007F909D /* CCDecorativeDisplay.cpp */; }; + 15C0B55E196D412F007F909D /* CCDisplayFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B4A9196D412F007F909D /* CCDisplayFactory.cpp */; }; + 15C0B55F196D412F007F909D /* CCDisplayManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B4AB196D412F007F909D /* CCDisplayManager.cpp */; }; + 15C0B560196D412F007F909D /* CCSkin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B4AD196D412F007F909D /* CCSkin.cpp */; }; + 15C0B561196D412F007F909D /* CCColliderDetector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B4B2196D412F007F909D /* CCColliderDetector.cpp */; }; + 15C0B562196D412F007F909D /* CCArmatureDataManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B4B5196D412F007F909D /* CCArmatureDataManager.cpp */; }; + 15C0B563196D412F007F909D /* CCArmatureDefine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B4B7196D412F007F909D /* CCArmatureDefine.cpp */; }; + 15C0B564196D412F007F909D /* CCDataReaderHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B4B9196D412F007F909D /* CCDataReaderHelper.cpp */; }; + 15C0B565196D412F007F909D /* CCSpriteFrameCacheHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B4BB196D412F007F909D /* CCSpriteFrameCacheHelper.cpp */; }; + 15C0B566196D412F007F909D /* CCTransformHelp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B4BD196D412F007F909D /* CCTransformHelp.cpp */; }; + 15C0B567196D412F007F909D /* CCTweenFunction.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B4BF196D412F007F909D /* CCTweenFunction.cpp */; }; + 15C0B568196D412F007F909D /* CCUtilMath.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B4C1196D412F007F909D /* CCUtilMath.cpp */; }; + 15C0B569196D412F007F909D /* CCComAttribute.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B4C4196D412F007F909D /* CCComAttribute.cpp */; }; + 15C0B56A196D412F007F909D /* CCComAudio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B4C6196D412F007F909D /* CCComAudio.cpp */; }; + 15C0B56B196D412F007F909D /* CCComController.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B4C9196D412F007F909D /* CCComController.cpp */; }; + 15C0B56C196D412F007F909D /* CCComRender.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B4CB196D412F007F909D /* CCComRender.cpp */; }; + 15C0B56D196D412F007F909D /* CCInputDelegate.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B4CD196D412F007F909D /* CCInputDelegate.cpp */; }; + 15C0B56E196D412F007F909D /* UIWidget.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B4D1196D412F007F909D /* UIWidget.cpp */; }; + 15C0B56F196D412F007F909D /* UILayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B4D4196D412F007F909D /* UILayout.cpp */; }; + 15C0B570196D412F007F909D /* UILayoutDefine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B4D6196D412F007F909D /* UILayoutDefine.cpp */; }; + 15C0B571196D412F007F909D /* UILayoutParameter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B4D8196D412F007F909D /* UILayoutParameter.cpp */; }; + 15C0B572196D412F007F909D /* CocosGUI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B4DB196D412F007F909D /* CocosGUI.cpp */; }; + 15C0B573196D412F007F909D /* UIHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B4DE196D412F007F909D /* UIHelper.cpp */; }; + 15C0B574196D412F007F909D /* UITouchGroup.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B4E0196D412F007F909D /* UITouchGroup.cpp */; }; + 15C0B575196D412F007F909D /* UIListView.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B4E6196D412F007F909D /* UIListView.cpp */; }; + 15C0B576196D412F007F909D /* UIPageView.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B4E8196D412F007F909D /* UIPageView.cpp */; }; + 15C0B577196D412F007F909D /* UIScrollView.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B4EB196D412F007F909D /* UIScrollView.cpp */; }; + 15C0B578196D412F007F909D /* UIButton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B4ED196D412F007F909D /* UIButton.cpp */; }; + 15C0B579196D412F007F909D /* UICheckBox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B4EF196D412F007F909D /* UICheckBox.cpp */; }; + 15C0B57A196D412F007F909D /* UIImageView.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B4F1196D412F007F909D /* UIImageView.cpp */; }; + 15C0B57B196D412F007F909D /* UILabel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B4F3196D412F007F909D /* UILabel.cpp */; }; + 15C0B57C196D412F007F909D /* UILabelAtlas.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B4F5196D412F007F909D /* UILabelAtlas.cpp */; }; + 15C0B57D196D412F007F909D /* UILabelBMFont.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B4F7196D412F007F909D /* UILabelBMFont.cpp */; }; + 15C0B57E196D412F007F909D /* UILoadingBar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B4F9196D412F007F909D /* UILoadingBar.cpp */; }; + 15C0B57F196D412F007F909D /* UIRichText.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B4FB196D412F007F909D /* UIRichText.cpp */; }; + 15C0B580196D412F007F909D /* UISlider.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B4FD196D412F007F909D /* UISlider.cpp */; }; + 15C0B581196D412F007F909D /* UITextField.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B4FF196D412F007F909D /* UITextField.cpp */; }; + 15C0B582196D412F007F909D /* CocoLoader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B502196D412F007F909D /* CocoLoader.cpp */; }; + 15C0B583196D412F007F909D /* DictionaryHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B504196D412F007F909D /* DictionaryHelper.cpp */; }; + 15C0B584196D412F007F909D /* GUIReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B513196D412F007F909D /* GUIReader.cpp */; }; + 15C0B585196D412F007F909D /* SceneReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B515196D412F007F909D /* SceneReader.cpp */; }; + 15C0B586196D412F007F909D /* ButtonReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B519196D412F007F909D /* ButtonReader.cpp */; }; + 15C0B587196D412F007F909D /* CheckBoxReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B51C196D412F007F909D /* CheckBoxReader.cpp */; }; + 15C0B588196D412F007F909D /* ImageViewReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B51F196D412F007F909D /* ImageViewReader.cpp */; }; + 15C0B589196D412F007F909D /* LabelAtlasReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B522196D412F007F909D /* LabelAtlasReader.cpp */; }; + 15C0B58A196D412F007F909D /* LabelBMFontReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B525196D412F007F909D /* LabelBMFontReader.cpp */; }; + 15C0B58B196D412F007F909D /* LabelReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B528196D412F007F909D /* LabelReader.cpp */; }; + 15C0B58C196D412F007F909D /* LayoutReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B52B196D412F007F909D /* LayoutReader.cpp */; }; + 15C0B58D196D412F007F909D /* ListViewReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B52E196D412F007F909D /* ListViewReader.cpp */; }; + 15C0B58E196D412F007F909D /* LoadingBarReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B531196D412F007F909D /* LoadingBarReader.cpp */; }; + 15C0B58F196D412F007F909D /* PageViewReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B534196D412F007F909D /* PageViewReader.cpp */; }; + 15C0B590196D412F007F909D /* ScrollViewReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B537196D412F007F909D /* ScrollViewReader.cpp */; }; + 15C0B591196D412F007F909D /* SliderReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B53A196D412F007F909D /* SliderReader.cpp */; }; + 15C0B592196D412F007F909D /* TextFieldReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B53D196D412F007F909D /* TextFieldReader.cpp */; }; + 15C0B593196D412F007F909D /* WidgetReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B53F196D412F007F909D /* WidgetReader.cpp */; }; + 15C0B594196D412F007F909D /* ObjectFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B543196D412F007F909D /* ObjectFactory.cpp */; }; + 15C0B595196D412F007F909D /* TriggerBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B545196D412F007F909D /* TriggerBase.cpp */; }; + 15C0B596196D412F007F909D /* TriggerMng.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B547196D412F007F909D /* TriggerMng.cpp */; }; + 15C0B597196D412F007F909D /* TriggerObj.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15C0B549196D412F007F909D /* TriggerObj.cpp */; }; 1A27573F1697CF2B00504026 /* CCEditBoxImplAndroid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A27573D1697CF2B00504026 /* CCEditBoxImplAndroid.cpp */; }; 1A8F3B6E175E05DA00049216 /* Animation.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A8F3B43175E05DA00049216 /* Animation.cpp */; }; 1A8F3B6F175E05DA00049216 /* AnimationState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A8F3B45175E05DA00049216 /* AnimationState.cpp */; }; @@ -166,242 +243,165 @@ 1D60589F0D05DD5A006BFB54 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D30AB110D05D00D00671497 /* Foundation.framework */; }; 1DF5F4E00D08C38300B7A737 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */; }; 288765A50DF7441C002DB57D /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 288765A40DF7441C002DB57D /* CoreGraphics.framework */; }; - 298B29BA18D0668400C1920F /* ButtonReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 298B299118D0668400C1920F /* ButtonReader.cpp */; }; - 298B29BB18D0668400C1920F /* CheckBoxReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 298B299418D0668400C1920F /* CheckBoxReader.cpp */; }; - 298B29BC18D0668400C1920F /* ImageViewReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 298B299718D0668400C1920F /* ImageViewReader.cpp */; }; - 298B29BD18D0668400C1920F /* LabelAtlasReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 298B299A18D0668400C1920F /* LabelAtlasReader.cpp */; }; - 298B29BE18D0668400C1920F /* LabelBMFontReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 298B299D18D0668400C1920F /* LabelBMFontReader.cpp */; }; - 298B29BF18D0668400C1920F /* LabelReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 298B29A018D0668400C1920F /* LabelReader.cpp */; }; - 298B29C018D0668400C1920F /* LayoutReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 298B29A318D0668400C1920F /* LayoutReader.cpp */; }; - 298B29C118D0668400C1920F /* ListViewReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 298B29A618D0668400C1920F /* ListViewReader.cpp */; }; - 298B29C218D0668400C1920F /* LoadingBarReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 298B29A918D0668400C1920F /* LoadingBarReader.cpp */; }; - 298B29C318D0668400C1920F /* PageViewReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 298B29AC18D0668400C1920F /* PageViewReader.cpp */; }; - 298B29C418D0668400C1920F /* ScrollViewReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 298B29AF18D0668400C1920F /* ScrollViewReader.cpp */; }; - 298B29C518D0668400C1920F /* SliderReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 298B29B218D0668400C1920F /* SliderReader.cpp */; }; - 298B29C618D0668400C1920F /* TextFieldReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 298B29B518D0668400C1920F /* TextFieldReader.cpp */; }; - 298B29C718D0668400C1920F /* WidgetReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 298B29B718D0668400C1920F /* WidgetReader.cpp */; }; - 375BD4C31868411B0024609E /* ObjectFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 375BD4BB1868411B0024609E /* ObjectFactory.cpp */; }; - 375BD4C41868411B0024609E /* TriggerBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 375BD4BD1868411B0024609E /* TriggerBase.cpp */; }; - 375BD4C51868411B0024609E /* TriggerMng.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 375BD4BF1868411B0024609E /* TriggerMng.cpp */; }; - 375BD4C61868411B0024609E /* TriggerObj.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 375BD4C11868411B0024609E /* TriggerObj.cpp */; }; - 375BD50E1868454E0024609E /* CCActionEaseEx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 375BD5021868454E0024609E /* CCActionEaseEx.cpp */; }; - 375BD50F1868454E0024609E /* CCActionFrame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 375BD5041868454E0024609E /* CCActionFrame.cpp */; }; - 375BD5101868454E0024609E /* CCActionFrameEasing.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 375BD5061868454E0024609E /* CCActionFrameEasing.cpp */; }; - 375BD5111868454E0024609E /* CCActionManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 375BD5081868454E0024609E /* CCActionManager.cpp */; }; - 375BD5121868454E0024609E /* CCActionNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 375BD50A1868454E0024609E /* CCActionNode.cpp */; }; - 375BD5131868454E0024609E /* CCActionObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 375BD50C1868454E0024609E /* CCActionObject.cpp */; }; - 379BB99A17F03F3700829B88 /* CCArmatureAnimation.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 379BB90817F03F3700829B88 /* CCArmatureAnimation.cpp */; }; - 379BB99B17F03F3700829B88 /* CCProcessBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 379BB90A17F03F3700829B88 /* CCProcessBase.cpp */; }; - 379BB99C17F03F3700829B88 /* CCTween.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 379BB90C17F03F3700829B88 /* CCTween.cpp */; }; - 379BB99D17F03F3700829B88 /* CCArmature.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 379BB90E17F03F3700829B88 /* CCArmature.cpp */; }; - 379BB99E17F03F3700829B88 /* CCBone.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 379BB91017F03F3700829B88 /* CCBone.cpp */; }; - 379BB99F17F03F3700829B88 /* CCDatas.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 379BB91317F03F3700829B88 /* CCDatas.cpp */; }; - 379BB9A017F03F3700829B88 /* CCBatchNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 379BB91617F03F3700829B88 /* CCBatchNode.cpp */; }; - 379BB9A117F03F3700829B88 /* CCDecorativeDisplay.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 379BB91817F03F3700829B88 /* CCDecorativeDisplay.cpp */; }; - 379BB9A217F03F3700829B88 /* CCDisplayFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 379BB91A17F03F3700829B88 /* CCDisplayFactory.cpp */; }; - 379BB9A317F03F3700829B88 /* CCDisplayManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 379BB91C17F03F3700829B88 /* CCDisplayManager.cpp */; }; - 379BB9A417F03F3700829B88 /* CCSkin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 379BB91E17F03F3700829B88 /* CCSkin.cpp */; }; - 379BB9A517F03F3700829B88 /* CCColliderDetector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 379BB92317F03F3700829B88 /* CCColliderDetector.cpp */; }; - 379BB9A617F03F3700829B88 /* CCArmatureDataManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 379BB92617F03F3700829B88 /* CCArmatureDataManager.cpp */; }; - 379BB9A717F03F3700829B88 /* CCArmatureDefine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 379BB92817F03F3700829B88 /* CCArmatureDefine.cpp */; }; - 379BB9A817F03F3700829B88 /* CCDataReaderHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 379BB92A17F03F3700829B88 /* CCDataReaderHelper.cpp */; }; - 379BB9A917F03F3700829B88 /* CCSpriteFrameCacheHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 379BB92C17F03F3700829B88 /* CCSpriteFrameCacheHelper.cpp */; }; - 379BB9AA17F03F3700829B88 /* CCTransformHelp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 379BB92E17F03F3700829B88 /* CCTransformHelp.cpp */; }; - 379BB9AB17F03F3700829B88 /* CCTweenFunction.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 379BB93017F03F3700829B88 /* CCTweenFunction.cpp */; }; - 379BB9AC17F03F3700829B88 /* CCUtilMath.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 379BB93217F03F3700829B88 /* CCUtilMath.cpp */; }; - 379BB9AD17F03F3700829B88 /* CCComAttribute.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 379BB93517F03F3700829B88 /* CCComAttribute.cpp */; }; - 379BB9AE17F03F3700829B88 /* CCComAudio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 379BB93717F03F3700829B88 /* CCComAudio.cpp */; }; - 379BB9AF17F03F3700829B88 /* CCComController.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 379BB93917F03F3700829B88 /* CCComController.cpp */; }; - 379BB9B017F03F3700829B88 /* CCComRender.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 379BB93B17F03F3700829B88 /* CCComRender.cpp */; }; - 379BB9B117F03F3700829B88 /* CCInputDelegate.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 379BB93D17F03F3700829B88 /* CCInputDelegate.cpp */; }; - 379BB9B317F03F3700829B88 /* UIWidget.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 379BB94417F03F3700829B88 /* UIWidget.cpp */; }; - 379BB9B417F03F3700829B88 /* UILayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 379BB94717F03F3700829B88 /* UILayout.cpp */; }; - 379BB9B617F03F3700829B88 /* UILayoutParameter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 379BB94B17F03F3700829B88 /* UILayoutParameter.cpp */; }; - 379BB9B717F03F3700829B88 /* UILayoutDefine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 379BB94D17F03F3700829B88 /* UILayoutDefine.cpp */; }; - 379BB9B817F03F3700829B88 /* CocosGUI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 379BB95017F03F3700829B88 /* CocosGUI.cpp */; }; - 379BB9B917F03F3700829B88 /* UIHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 379BB95217F03F3700829B88 /* UIHelper.cpp */; }; - 379BB9BD17F03F3700829B88 /* UIListView.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 379BB95E17F03F3700829B88 /* UIListView.cpp */; }; - 379BB9BE17F03F3700829B88 /* UIPageView.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 379BB96017F03F3700829B88 /* UIPageView.cpp */; }; - 379BB9BF17F03F3700829B88 /* UIScrollView.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 379BB96317F03F3700829B88 /* UIScrollView.cpp */; }; - 379BB9C017F03F3700829B88 /* UIButton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 379BB96517F03F3700829B88 /* UIButton.cpp */; }; - 379BB9C117F03F3700829B88 /* UICheckBox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 379BB96717F03F3700829B88 /* UICheckBox.cpp */; }; - 379BB9C217F03F3700829B88 /* UIImageView.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 379BB96917F03F3700829B88 /* UIImageView.cpp */; }; - 379BB9C317F03F3700829B88 /* UILabel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 379BB96B17F03F3700829B88 /* UILabel.cpp */; }; - 379BB9C417F03F3700829B88 /* UILabelAtlas.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 379BB96D17F03F3700829B88 /* UILabelAtlas.cpp */; }; - 379BB9C517F03F3700829B88 /* UILabelBMFont.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 379BB96F17F03F3700829B88 /* UILabelBMFont.cpp */; }; - 379BB9C617F03F3700829B88 /* UILoadingBar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 379BB97117F03F3700829B88 /* UILoadingBar.cpp */; }; - 379BB9C717F03F3700829B88 /* UISlider.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 379BB97317F03F3700829B88 /* UISlider.cpp */; }; - 379BB9C917F03F3700829B88 /* UITextField.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 379BB97717F03F3700829B88 /* UITextField.cpp */; }; - 379BB9CB17F03F3700829B88 /* DictionaryHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 379BB97C17F03F3700829B88 /* DictionaryHelper.cpp */; }; - 379BB9D317F03F3700829B88 /* GUIReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 379BB99117F03F3700829B88 /* GUIReader.cpp */; }; - 379BB9D417F03F3700829B88 /* SceneReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 379BB99317F03F3700829B88 /* SceneReader.cpp */; }; - 38FA2EB0194EA58000FF2BE4 /* CCActionTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 38FA2EA5194EA58000FF2BE4 /* CCActionTimeline.cpp */; }; - 38FA2EB1194EA58000FF2BE4 /* CCActionTimelineCache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 38FA2EA7194EA58000FF2BE4 /* CCActionTimelineCache.cpp */; }; - 38FA2EB2194EA58000FF2BE4 /* CCFrame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 38FA2EA9194EA58000FF2BE4 /* CCFrame.cpp */; }; - 38FA2EB3194EA58000FF2BE4 /* CCNodeReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 38FA2EAB194EA58000FF2BE4 /* CCNodeReader.cpp */; }; - 38FA2EB4194EA58000FF2BE4 /* CCTimeLine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 38FA2EAD194EA58000FF2BE4 /* CCTimeLine.cpp */; }; - 43B91F051949BAF100F7F815 /* CocoLoader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43B91F031949BAF100F7F815 /* CocoLoader.cpp */; }; - 46513EB1187BFBA200B5ABE1 /* UITouchGroup.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46513EAF187BFBA200B5ABE1 /* UITouchGroup.cpp */; }; 7855E0E1153FEF240059DD9A /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = 7855E0DF153FEF240059DD9A /* Default.png */; }; - 8949456719570B6000487A09 /* joystick.plist in Resources */ = {isa = PBXBuildFile; fileRef = 8949453A19570B5F00487A09 /* joystick.plist */; }; - 8949456819570B6000487A09 /* joystick.png in Resources */ = {isa = PBXBuildFile; fileRef = 8949453B19570B5F00487A09 /* joystick.png */; }; - 8949456919570B6000487A09 /* main.plist in Resources */ = {isa = PBXBuildFile; fileRef = 8949453C19570B5F00487A09 /* main.plist */; }; - 8949456A19570B6000487A09 /* main.png in Resources */ = {isa = PBXBuildFile; fileRef = 8949453D19570B5F00487A09 /* main.png */; }; - 8949456B19570B6000487A09 /* map_01.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8949453E19570B5F00487A09 /* map_01.tmx */; }; - 8949456C19570B6000487A09 /* map_02.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8949453F19570B5F00487A09 /* map_02.tmx */; }; - 8949456D19570B6000487A09 /* map_03.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8949454019570B5F00487A09 /* map_03.tmx */; }; - 8949456E19570B6000487A09 /* map_menu1_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8949454119570B5F00487A09 /* map_menu1_style1.tmx */; }; - 8949456F19570B6000487A09 /* map_menu1_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8949454219570B6000487A09 /* map_menu1_style2.tmx */; }; - 8949457019570B6000487A09 /* map_menu1_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8949454319570B6000487A09 /* map_menu1_style3.tmx */; }; - 8949457119570B6000487A09 /* map_menu2_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8949454419570B6000487A09 /* map_menu2_style1.tmx */; }; - 8949457219570B6000487A09 /* map_menu2_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8949454519570B6000487A09 /* map_menu2_style2.tmx */; }; - 8949457319570B6000487A09 /* map_menu2_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8949454619570B6000487A09 /* map_menu2_style3.tmx */; }; - 8949457419570B6000487A09 /* map_menu3_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8949454719570B6000487A09 /* map_menu3_style1.tmx */; }; - 8949457519570B6000487A09 /* map_menu3_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8949454819570B6000487A09 /* map_menu3_style2.tmx */; }; - 8949457619570B6000487A09 /* map_menu3_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8949454919570B6000487A09 /* map_menu3_style3.tmx */; }; - 8949457719570B6000487A09 /* map_menu4_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8949454A19570B6000487A09 /* map_menu4_style1.tmx */; }; - 8949457819570B6000487A09 /* map_menu4_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8949454B19570B6000487A09 /* map_menu4_style2.tmx */; }; - 8949457919570B6000487A09 /* map_menu4_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8949454C19570B6000487A09 /* map_menu4_style3.tmx */; }; - 8949457A19570B6000487A09 /* map_menu5_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8949454D19570B6000487A09 /* map_menu5_style1.tmx */; }; - 8949457B19570B6000487A09 /* map_menu5_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8949454E19570B6000487A09 /* map_menu5_style2.tmx */; }; - 8949457C19570B6000487A09 /* map_menu5_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8949454F19570B6000487A09 /* map_menu5_style3.tmx */; }; - 8949457D19570B6000487A09 /* map.png in Resources */ = {isa = PBXBuildFile; fileRef = 8949455019570B6000487A09 /* map.png */; }; - 8949457E19570B6000487A09 /* monsters.plist in Resources */ = {isa = PBXBuildFile; fileRef = 8949455119570B6000487A09 /* monsters.plist */; }; - 8949457F19570B6000487A09 /* monsters.png in Resources */ = {isa = PBXBuildFile; fileRef = 8949455219570B6000487A09 /* monsters.png */; }; - 8949458019570B6000487A09 /* scene_battle_cns.plist in Resources */ = {isa = PBXBuildFile; fileRef = 8949455319570B6000487A09 /* scene_battle_cns.plist */; }; - 8949458119570B6000487A09 /* scene_loading_cns.plist in Resources */ = {isa = PBXBuildFile; fileRef = 8949455419570B6000487A09 /* scene_loading_cns.plist */; }; - 8949458219570B6000487A09 /* scene_map_cns.plist in Resources */ = {isa = PBXBuildFile; fileRef = 8949455519570B6000487A09 /* scene_map_cns.plist */; }; - 8949458319570B6000487A09 /* scene_start_cns.plist in Resources */ = {isa = PBXBuildFile; fileRef = 8949455619570B6000487A09 /* scene_start_cns.plist */; }; - 8949458419570B6000487A09 /* select_player_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8949455719570B6000487A09 /* select_player_style1.tmx */; }; - 8949458519570B6000487A09 /* select_player_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8949455819570B6000487A09 /* select_player_style2.tmx */; }; - 8949458619570B6000487A09 /* select_player_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8949455919570B6000487A09 /* select_player_style3.tmx */; }; - 8949458719570B6000487A09 /* shop_list_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8949455A19570B6000487A09 /* shop_list_style1.tmx */; }; - 8949458819570B6000487A09 /* shop_list_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8949455B19570B6000487A09 /* shop_list_style2.tmx */; }; - 8949458919570B6000487A09 /* shop_list_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8949455C19570B6000487A09 /* shop_list_style3.tmx */; }; - 8949458A19570B6000487A09 /* shop_menu_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8949455D19570B6000487A09 /* shop_menu_style1.tmx */; }; - 8949458B19570B6000487A09 /* shop_menu_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8949455E19570B6000487A09 /* shop_menu_style2.tmx */; }; - 8949458C19570B6000487A09 /* shop_menu_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8949455F19570B6000487A09 /* shop_menu_style3.tmx */; }; - 8949458D19570B6000487A09 /* skill_cure.plist in Resources */ = {isa = PBXBuildFile; fileRef = 8949456019570B6000487A09 /* skill_cure.plist */; }; - 8949458E19570B6000487A09 /* skill_fire.plist in Resources */ = {isa = PBXBuildFile; fileRef = 8949456119570B6000487A09 /* skill_fire.plist */; }; - 8949458F19570B6000487A09 /* start_bg.png in Resources */ = {isa = PBXBuildFile; fileRef = 8949456219570B6000487A09 /* start_bg.png */; }; - 8949459019570B6000487A09 /* use_item.plist in Resources */ = {isa = PBXBuildFile; fileRef = 8949456319570B6000487A09 /* use_item.plist */; }; - 8949459119570B6000487A09 /* Window_a_00.png in Resources */ = {isa = PBXBuildFile; fileRef = 8949456419570B6000487A09 /* Window_a_00.png */; }; - 8949459219570B6000487A09 /* Window_b_00.png in Resources */ = {isa = PBXBuildFile; fileRef = 8949456519570B6000487A09 /* Window_b_00.png */; }; - 8949459319570B6000487A09 /* Window_c_00.png in Resources */ = {isa = PBXBuildFile; fileRef = 8949456619570B6000487A09 /* Window_c_00.png */; }; - 894945E119570B8400487A09 /* actor4_0.png in Resources */ = {isa = PBXBuildFile; fileRef = 8949459419570B8400487A09 /* actor4_0.png */; }; - 894945E219570B8400487A09 /* actor4_1.png in Resources */ = {isa = PBXBuildFile; fileRef = 8949459519570B8400487A09 /* actor4_1.png */; }; - 894945E319570B8400487A09 /* actor4_2.png in Resources */ = {isa = PBXBuildFile; fileRef = 8949459619570B8400487A09 /* actor4_2.png */; }; - 894945E419570B8400487A09 /* actor4_3.png in Resources */ = {isa = PBXBuildFile; fileRef = 8949459719570B8400487A09 /* actor4_3.png */; }; - 894945E519570B8400487A09 /* actor4_4.png in Resources */ = {isa = PBXBuildFile; fileRef = 8949459819570B8400487A09 /* actor4_4.png */; }; - 894945E619570B8400487A09 /* actor5_0.png in Resources */ = {isa = PBXBuildFile; fileRef = 8949459919570B8400487A09 /* actor5_0.png */; }; - 894945E719570B8400487A09 /* actor5_1.png in Resources */ = {isa = PBXBuildFile; fileRef = 8949459A19570B8400487A09 /* actor5_1.png */; }; - 894945E819570B8400487A09 /* actor5_2.png in Resources */ = {isa = PBXBuildFile; fileRef = 8949459B19570B8400487A09 /* actor5_2.png */; }; - 894945E919570B8400487A09 /* actor5_3.png in Resources */ = {isa = PBXBuildFile; fileRef = 8949459C19570B8400487A09 /* actor5_3.png */; }; - 894945EA19570B8400487A09 /* actor5_4.png in Resources */ = {isa = PBXBuildFile; fileRef = 8949459D19570B8400487A09 /* actor5_4.png */; }; - 894945EB19570B8400487A09 /* actor7_0.png in Resources */ = {isa = PBXBuildFile; fileRef = 8949459E19570B8400487A09 /* actor7_0.png */; }; - 894945EC19570B8400487A09 /* actor7_1.png in Resources */ = {isa = PBXBuildFile; fileRef = 8949459F19570B8400487A09 /* actor7_1.png */; }; - 894945ED19570B8400487A09 /* actor7_2.png in Resources */ = {isa = PBXBuildFile; fileRef = 894945A019570B8400487A09 /* actor7_2.png */; }; - 894945EE19570B8400487A09 /* actor7_3.png in Resources */ = {isa = PBXBuildFile; fileRef = 894945A119570B8400487A09 /* actor7_3.png */; }; - 894945EF19570B8400487A09 /* actor7_4.png in Resources */ = {isa = PBXBuildFile; fileRef = 894945A219570B8400487A09 /* actor7_4.png */; }; - 894945F019570B8400487A09 /* actor8_0.png in Resources */ = {isa = PBXBuildFile; fileRef = 894945A319570B8400487A09 /* actor8_0.png */; }; - 894945F119570B8400487A09 /* actor8_1.png in Resources */ = {isa = PBXBuildFile; fileRef = 894945A419570B8400487A09 /* actor8_1.png */; }; - 894945F219570B8400487A09 /* actor8_2.png in Resources */ = {isa = PBXBuildFile; fileRef = 894945A519570B8400487A09 /* actor8_2.png */; }; - 894945F319570B8400487A09 /* actor8_3.png in Resources */ = {isa = PBXBuildFile; fileRef = 894945A619570B8400487A09 /* actor8_3.png */; }; - 894945F419570B8400487A09 /* actor8_4.png in Resources */ = {isa = PBXBuildFile; fileRef = 894945A719570B8400487A09 /* actor8_4.png */; }; - 894945F519570B8400487A09 /* actor111.png in Resources */ = {isa = PBXBuildFile; fileRef = 894945A819570B8400487A09 /* actor111.png */; }; - 894945F619570B8400487A09 /* actor113.png in Resources */ = {isa = PBXBuildFile; fileRef = 894945A919570B8400487A09 /* actor113.png */; }; - 894945F719570B8400487A09 /* actor114.png in Resources */ = {isa = PBXBuildFile; fileRef = 894945AA19570B8400487A09 /* actor114.png */; }; - 894945F819570B8400487A09 /* actor115.png in Resources */ = {isa = PBXBuildFile; fileRef = 894945AB19570B8400487A09 /* actor115.png */; }; - 894945F919570B8400487A09 /* actor117.png in Resources */ = {isa = PBXBuildFile; fileRef = 894945AC19570B8400487A09 /* actor117.png */; }; - 894945FA19570B8400487A09 /* actor120.png in Resources */ = {isa = PBXBuildFile; fileRef = 894945AD19570B8400487A09 /* actor120.png */; }; - 894945FB19570B8400487A09 /* alert_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 894945AE19570B8400487A09 /* alert_style1.tmx */; }; - 894945FC19570B8400487A09 /* alert_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 894945AF19570B8400487A09 /* alert_style2.tmx */; }; - 894945FD19570B8400487A09 /* alert_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 894945B019570B8400487A09 /* alert_style3.tmx */; }; - 894945FE19570B8400487A09 /* attack_damage.plist in Resources */ = {isa = PBXBuildFile; fileRef = 894945B119570B8400487A09 /* attack_damage.plist */; }; - 894945FF19570B8400487A09 /* attack_damage.png in Resources */ = {isa = PBXBuildFile; fileRef = 894945B219570B8400487A09 /* attack_damage.png */; }; - 8949460019570B8400487A09 /* attack1.ExportJson in Resources */ = {isa = PBXBuildFile; fileRef = 894945B319570B8400487A09 /* attack1.ExportJson */; }; - 8949460119570B8400487A09 /* attack2.ExportJson in Resources */ = {isa = PBXBuildFile; fileRef = 894945B419570B8400487A09 /* attack2.ExportJson */; }; - 8949460219570B8400487A09 /* attack3.ExportJson in Resources */ = {isa = PBXBuildFile; fileRef = 894945B519570B8400487A09 /* attack3.ExportJson */; }; - 8949460319570B8400487A09 /* attack4.ExportJson in Resources */ = {isa = PBXBuildFile; fileRef = 894945B619570B8400487A09 /* attack4.ExportJson */; }; - 8949460419570B8400487A09 /* attack10.plist in Resources */ = {isa = PBXBuildFile; fileRef = 894945B719570B8400487A09 /* attack10.plist */; }; - 8949460519570B8400487A09 /* attack10.png in Resources */ = {isa = PBXBuildFile; fileRef = 894945B819570B8400487A09 /* attack10.png */; }; - 8949460619570B8400487A09 /* attack20.plist in Resources */ = {isa = PBXBuildFile; fileRef = 894945B919570B8400487A09 /* attack20.plist */; }; - 8949460719570B8400487A09 /* attack20.png in Resources */ = {isa = PBXBuildFile; fileRef = 894945BA19570B8400487A09 /* attack20.png */; }; - 8949460819570B8400487A09 /* attack30.plist in Resources */ = {isa = PBXBuildFile; fileRef = 894945BB19570B8400487A09 /* attack30.plist */; }; - 8949460919570B8400487A09 /* attack30.png in Resources */ = {isa = PBXBuildFile; fileRef = 894945BC19570B8400487A09 /* attack30.png */; }; - 8949460A19570B8400487A09 /* attack40.plist in Resources */ = {isa = PBXBuildFile; fileRef = 894945BD19570B8400487A09 /* attack40.plist */; }; - 8949460B19570B8400487A09 /* attack40.png in Resources */ = {isa = PBXBuildFile; fileRef = 894945BE19570B8400487A09 /* attack40.png */; }; - 8949460C19570B8400487A09 /* audio_battle_attack1.wav in Resources */ = {isa = PBXBuildFile; fileRef = 894945BF19570B8400487A09 /* audio_battle_attack1.wav */; }; - 8949460D19570B8400487A09 /* audio_battle_attack2.wav in Resources */ = {isa = PBXBuildFile; fileRef = 894945C019570B8400487A09 /* audio_battle_attack2.wav */; }; - 8949460E19570B8400487A09 /* audio_battle_end.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = 894945C119570B8400487A09 /* audio_battle_end.mp3 */; }; - 8949460F19570B8400487A09 /* audio_battle_lose.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = 894945C219570B8400487A09 /* audio_battle_lose.mp3 */; }; - 8949461019570B8400487A09 /* audio_battle_menu.wav in Resources */ = {isa = PBXBuildFile; fileRef = 894945C319570B8400487A09 /* audio_battle_menu.wav */; }; - 8949461119570B8400487A09 /* audio_battle_start.wav in Resources */ = {isa = PBXBuildFile; fileRef = 894945C419570B8400487A09 /* audio_battle_start.wav */; }; - 8949461219570B8400487A09 /* audio_battle.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = 894945C519570B8400487A09 /* audio_battle.mp3 */; }; - 8949461319570B8400487A09 /* audio_effect_btn.wav in Resources */ = {isa = PBXBuildFile; fileRef = 894945C619570B8400487A09 /* audio_effect_btn.wav */; }; - 8949461419570B8400487A09 /* audio_inn.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = 894945C719570B8400487A09 /* audio_inn.mp3 */; }; - 8949461519570B8400487A09 /* audio_map_01.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = 894945C819570B8400487A09 /* audio_map_01.mp3 */; }; - 8949461619570B8400487A09 /* audio_map_02.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = 894945C919570B8400487A09 /* audio_map_02.mp3 */; }; - 8949461719570B8400487A09 /* audio_map_03.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = 894945CA19570B8400487A09 /* audio_map_03.mp3 */; }; - 8949461819570B8400487A09 /* audio_skill_cure.wav in Resources */ = {isa = PBXBuildFile; fileRef = 894945CB19570B8400487A09 /* audio_skill_cure.wav */; }; - 8949461919570B8400487A09 /* audio_skill_fire.wav in Resources */ = {isa = PBXBuildFile; fileRef = 894945CC19570B8400487A09 /* audio_skill_fire.wav */; }; - 8949461A19570B8400487A09 /* audio_start_btn.wav in Resources */ = {isa = PBXBuildFile; fileRef = 894945CD19570B8400487A09 /* audio_start_btn.wav */; }; - 8949461B19570B8400487A09 /* audio_start.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = 894945CE19570B8400487A09 /* audio_start.mp3 */; }; - 8949461C19570B8400487A09 /* audio_use_items.wav in Resources */ = {isa = PBXBuildFile; fileRef = 894945CF19570B8400487A09 /* audio_use_items.wav */; }; - 8949461D19570B8400487A09 /* battle_battlemenu_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 894945D019570B8400487A09 /* battle_battlemenu_style1.tmx */; }; - 8949461E19570B8400487A09 /* battle_battlemenu_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 894945D119570B8400487A09 /* battle_battlemenu_style2.tmx */; }; - 8949461F19570B8400487A09 /* battle_battlemenu_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 894945D219570B8400487A09 /* battle_battlemenu_style3.tmx */; }; - 8949462019570B8400487A09 /* battle_bg.png in Resources */ = {isa = PBXBuildFile; fileRef = 894945D319570B8400487A09 /* battle_bg.png */; }; - 8949462119570B8400487A09 /* battle_menu_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 894945D419570B8400487A09 /* battle_menu_style1.tmx */; }; - 8949462219570B8400487A09 /* battle_menu_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 894945D519570B8400487A09 /* battle_menu_style2.tmx */; }; - 8949462319570B8400487A09 /* battle_menu_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 894945D619570B8400487A09 /* battle_menu_style3.tmx */; }; - 8949462419570B8400487A09 /* battle_msg_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 894945D719570B8400487A09 /* battle_msg_style1.tmx */; }; - 8949462519570B8400487A09 /* battle_msg_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 894945D819570B8400487A09 /* battle_msg_style2.tmx */; }; - 8949462619570B8400487A09 /* battle_msg_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 894945D919570B8400487A09 /* battle_msg_style3.tmx */; }; - 8949462719570B8400487A09 /* battle_select_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 894945DA19570B8400487A09 /* battle_select_style1.tmx */; }; - 8949462819570B8400487A09 /* battle_select_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 894945DB19570B8400487A09 /* battle_select_style2.tmx */; }; - 8949462919570B8400487A09 /* battle_select_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 894945DC19570B8400487A09 /* battle_select_style3.tmx */; }; - 8949462A19570B8400487A09 /* db.sys in Resources */ = {isa = PBXBuildFile; fileRef = 894945DD19570B8400487A09 /* db.sys */; }; - 8949462B19570B8400487A09 /* dialog_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 894945DE19570B8400487A09 /* dialog_style1.tmx */; }; - 8949462C19570B8400487A09 /* dialog_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 894945DF19570B8400487A09 /* dialog_style2.tmx */; }; - 8949462D19570B8400487A09 /* dialog_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 894945E019570B8400487A09 /* dialog_style3.tmx */; }; - 8949462F19570B8E00487A09 /* fzcyjt.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 8949462E19570B8E00487A09 /* fzcyjt.ttf */; }; - 8949466319570BD700487A09 /* OzgCCScrollBgNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8949463119570BD700487A09 /* OzgCCScrollBgNode.cpp */; }; - 8949466419570BD700487A09 /* OzgCCUtility.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8949463319570BD700487A09 /* OzgCCUtility.cpp */; }; - 8949466519570BD700487A09 /* OzgFileUtility.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8949463519570BD700487A09 /* OzgFileUtility.cpp */; }; - 8949466619570BD700487A09 /* OzgJoystickLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8949463719570BD700487A09 /* OzgJoystickLayer.cpp */; }; - 8949466719570BD700487A09 /* RPGBaseSceneLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8949463919570BD700487A09 /* RPGBaseSceneLayer.cpp */; }; - 8949466819570BD700487A09 /* RPGBattleMenu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8949463B19570BD700487A09 /* RPGBattleMenu.cpp */; }; - 8949466919570BD700487A09 /* RPGBattleMonsterSprite.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8949463D19570BD700487A09 /* RPGBattleMonsterSprite.cpp */; }; - 8949466A19570BD700487A09 /* RPGBattlePlayerSprite.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8949463F19570BD700487A09 /* RPGBattlePlayerSprite.cpp */; }; - 8949466B19570BD700487A09 /* RPGBattleSceneLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8949464119570BD700487A09 /* RPGBattleSceneLayer.cpp */; }; - 8949466C19570BD700487A09 /* RPGComputingResults.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8949464319570BD700487A09 /* RPGComputingResults.cpp */; }; - 8949466D19570BD700487A09 /* RPGData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8949464519570BD700487A09 /* RPGData.cpp */; }; - 8949466E19570BD700487A09 /* RPGDialogLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8949464719570BD700487A09 /* RPGDialogLayer.cpp */; }; - 8949466F19570BD700487A09 /* RPGLoadingSceneLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8949464919570BD700487A09 /* RPGLoadingSceneLayer.cpp */; }; - 8949467019570BD700487A09 /* RPGMapChoicePlayerMenuLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8949464B19570BD700487A09 /* RPGMapChoicePlayerMenuLayer.cpp */; }; - 8949467119570BD700487A09 /* RPGMapDialogLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8949464D19570BD700487A09 /* RPGMapDialogLayer.cpp */; }; - 8949467219570BD700487A09 /* RPGMapEquipMenuLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8949464F19570BD700487A09 /* RPGMapEquipMenuLayer.cpp */; }; - 8949467319570BD700487A09 /* RPGMapItemsMenuLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8949465119570BD700487A09 /* RPGMapItemsMenuLayer.cpp */; }; - 8949467419570BD700487A09 /* RPGMapMenuLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8949465319570BD700487A09 /* RPGMapMenuLayer.cpp */; }; - 8949467519570BD700487A09 /* RPGMapNPCRoleSprite.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8949465519570BD700487A09 /* RPGMapNPCRoleSprite.cpp */; }; - 8949467619570BD700487A09 /* RPGMapRoleSprite.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8949465719570BD700487A09 /* RPGMapRoleSprite.cpp */; }; - 8949467719570BD700487A09 /* RPGMapSceneLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8949465919570BD700487A09 /* RPGMapSceneLayer.cpp */; }; - 8949467819570BD700487A09 /* RPGMapSkillMenuLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8949465B19570BD700487A09 /* RPGMapSkillMenuLayer.cpp */; }; - 8949467919570BD700487A09 /* RPGMapStatusMenuLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8949465D19570BD700487A09 /* RPGMapStatusMenuLayer.cpp */; }; - 8949467A19570BD700487A09 /* RPGResultsLogic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8949465F19570BD700487A09 /* RPGResultsLogic.cpp */; }; - 8949467B19570BD700487A09 /* RPGStartSceneLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8949466119570BD700487A09 /* RPGStartSceneLayer.cpp */; }; - 89D364B219570F490050A8E7 /* CppSQLite3.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89D3649819570F490050A8E7 /* CppSQLite3.cpp */; }; - 89D364B319570F490050A8E7 /* sn.txt in Resources */ = {isa = PBXBuildFile; fileRef = 89D364A819570F490050A8E7 /* sn.txt */; }; - 89D364B419570F490050A8E7 /* Array.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89D364AA19570F490050A8E7 /* Array.cpp */; }; - 89D364B519570F490050A8E7 /* Convert.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89D364AB19570F490050A8E7 /* Convert.cpp */; }; - 89D364B619570F490050A8E7 /* Escaper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89D364AC19570F490050A8E7 /* Escaper.cpp */; }; - 89D364B719570F490050A8E7 /* IndentCanceller.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89D364AD19570F490050A8E7 /* IndentCanceller.cpp */; }; - 89D364B819570F490050A8E7 /* Indenter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89D364AE19570F490050A8E7 /* Indenter.cpp */; }; - 89D364B919570F490050A8E7 /* Object.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89D364AF19570F490050A8E7 /* Object.cpp */; }; - 89D364BA19570F490050A8E7 /* SolidusEscaper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89D364B019570F490050A8E7 /* SolidusEscaper.cpp */; }; - 89D364BB19570F490050A8E7 /* Value.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89D364B119570F490050A8E7 /* Value.cpp */; }; - 89D364BD1957102D0050A8E7 /* libsqlite3.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 89D364BC1957102D0050A8E7 /* libsqlite3.dylib */; }; + 8974E29F1A4303D500D343A3 /* joystick.plist in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2721A4303D500D343A3 /* joystick.plist */; }; + 8974E2A01A4303D500D343A3 /* joystick.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2731A4303D500D343A3 /* joystick.png */; }; + 8974E2A11A4303D500D343A3 /* main.plist in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2741A4303D500D343A3 /* main.plist */; }; + 8974E2A21A4303D500D343A3 /* main.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2751A4303D500D343A3 /* main.png */; }; + 8974E2A31A4303D500D343A3 /* map_01.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2761A4303D500D343A3 /* map_01.tmx */; }; + 8974E2A41A4303D500D343A3 /* map_02.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2771A4303D500D343A3 /* map_02.tmx */; }; + 8974E2A51A4303D500D343A3 /* map_03.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2781A4303D500D343A3 /* map_03.tmx */; }; + 8974E2A61A4303D500D343A3 /* map_menu1_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2791A4303D500D343A3 /* map_menu1_style1.tmx */; }; + 8974E2A71A4303D500D343A3 /* map_menu1_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E27A1A4303D500D343A3 /* map_menu1_style2.tmx */; }; + 8974E2A81A4303D500D343A3 /* map_menu1_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E27B1A4303D500D343A3 /* map_menu1_style3.tmx */; }; + 8974E2A91A4303D500D343A3 /* map_menu2_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E27C1A4303D500D343A3 /* map_menu2_style1.tmx */; }; + 8974E2AA1A4303D500D343A3 /* map_menu2_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E27D1A4303D500D343A3 /* map_menu2_style2.tmx */; }; + 8974E2AB1A4303D500D343A3 /* map_menu2_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E27E1A4303D500D343A3 /* map_menu2_style3.tmx */; }; + 8974E2AC1A4303D500D343A3 /* map_menu3_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E27F1A4303D500D343A3 /* map_menu3_style1.tmx */; }; + 8974E2AD1A4303D500D343A3 /* map_menu3_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2801A4303D500D343A3 /* map_menu3_style2.tmx */; }; + 8974E2AE1A4303D500D343A3 /* map_menu3_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2811A4303D500D343A3 /* map_menu3_style3.tmx */; }; + 8974E2AF1A4303D500D343A3 /* map_menu4_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2821A4303D500D343A3 /* map_menu4_style1.tmx */; }; + 8974E2B01A4303D500D343A3 /* map_menu4_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2831A4303D500D343A3 /* map_menu4_style2.tmx */; }; + 8974E2B11A4303D500D343A3 /* map_menu4_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2841A4303D500D343A3 /* map_menu4_style3.tmx */; }; + 8974E2B21A4303D500D343A3 /* map_menu5_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2851A4303D500D343A3 /* map_menu5_style1.tmx */; }; + 8974E2B31A4303D500D343A3 /* map_menu5_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2861A4303D500D343A3 /* map_menu5_style2.tmx */; }; + 8974E2B41A4303D500D343A3 /* map_menu5_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2871A4303D500D343A3 /* map_menu5_style3.tmx */; }; + 8974E2B51A4303D500D343A3 /* map.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2881A4303D500D343A3 /* map.png */; }; + 8974E2B61A4303D500D343A3 /* monsters.plist in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2891A4303D500D343A3 /* monsters.plist */; }; + 8974E2B71A4303D500D343A3 /* monsters.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E28A1A4303D500D343A3 /* monsters.png */; }; + 8974E2B81A4303D500D343A3 /* scene_battle_cns.plist in Resources */ = {isa = PBXBuildFile; fileRef = 8974E28B1A4303D500D343A3 /* scene_battle_cns.plist */; }; + 8974E2B91A4303D500D343A3 /* scene_loading_cns.plist in Resources */ = {isa = PBXBuildFile; fileRef = 8974E28C1A4303D500D343A3 /* scene_loading_cns.plist */; }; + 8974E2BA1A4303D500D343A3 /* scene_map_cns.plist in Resources */ = {isa = PBXBuildFile; fileRef = 8974E28D1A4303D500D343A3 /* scene_map_cns.plist */; }; + 8974E2BB1A4303D500D343A3 /* scene_start_cns.plist in Resources */ = {isa = PBXBuildFile; fileRef = 8974E28E1A4303D500D343A3 /* scene_start_cns.plist */; }; + 8974E2BC1A4303D500D343A3 /* select_player_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E28F1A4303D500D343A3 /* select_player_style1.tmx */; }; + 8974E2BD1A4303D500D343A3 /* select_player_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2901A4303D500D343A3 /* select_player_style2.tmx */; }; + 8974E2BE1A4303D500D343A3 /* select_player_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2911A4303D500D343A3 /* select_player_style3.tmx */; }; + 8974E2BF1A4303D500D343A3 /* shop_list_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2921A4303D500D343A3 /* shop_list_style1.tmx */; }; + 8974E2C01A4303D500D343A3 /* shop_list_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2931A4303D500D343A3 /* shop_list_style2.tmx */; }; + 8974E2C11A4303D500D343A3 /* shop_list_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2941A4303D500D343A3 /* shop_list_style3.tmx */; }; + 8974E2C21A4303D500D343A3 /* shop_menu_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2951A4303D500D343A3 /* shop_menu_style1.tmx */; }; + 8974E2C31A4303D500D343A3 /* shop_menu_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2961A4303D500D343A3 /* shop_menu_style2.tmx */; }; + 8974E2C41A4303D500D343A3 /* shop_menu_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2971A4303D500D343A3 /* shop_menu_style3.tmx */; }; + 8974E2C51A4303D500D343A3 /* skill_cure.plist in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2981A4303D500D343A3 /* skill_cure.plist */; }; + 8974E2C61A4303D500D343A3 /* skill_fire.plist in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2991A4303D500D343A3 /* skill_fire.plist */; }; + 8974E2C71A4303D500D343A3 /* start_bg.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E29A1A4303D500D343A3 /* start_bg.png */; }; + 8974E2C81A4303D500D343A3 /* use_item.plist in Resources */ = {isa = PBXBuildFile; fileRef = 8974E29B1A4303D500D343A3 /* use_item.plist */; }; + 8974E2C91A4303D500D343A3 /* Window_a_00.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E29C1A4303D500D343A3 /* Window_a_00.png */; }; + 8974E2CA1A4303D500D343A3 /* Window_b_00.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E29D1A4303D500D343A3 /* Window_b_00.png */; }; + 8974E2CB1A4303D500D343A3 /* Window_c_00.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E29E1A4303D500D343A3 /* Window_c_00.png */; }; + 8974E3191A4303E900D343A3 /* actor4_0.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2CC1A4303E800D343A3 /* actor4_0.png */; }; + 8974E31A1A4303E900D343A3 /* actor4_1.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2CD1A4303E800D343A3 /* actor4_1.png */; }; + 8974E31B1A4303E900D343A3 /* actor4_2.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2CE1A4303E800D343A3 /* actor4_2.png */; }; + 8974E31C1A4303E900D343A3 /* actor4_3.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2CF1A4303E800D343A3 /* actor4_3.png */; }; + 8974E31D1A4303E900D343A3 /* actor4_4.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2D01A4303E800D343A3 /* actor4_4.png */; }; + 8974E31E1A4303E900D343A3 /* actor5_0.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2D11A4303E800D343A3 /* actor5_0.png */; }; + 8974E31F1A4303E900D343A3 /* actor5_1.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2D21A4303E800D343A3 /* actor5_1.png */; }; + 8974E3201A4303E900D343A3 /* actor5_2.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2D31A4303E800D343A3 /* actor5_2.png */; }; + 8974E3211A4303E900D343A3 /* actor5_3.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2D41A4303E800D343A3 /* actor5_3.png */; }; + 8974E3221A4303E900D343A3 /* actor5_4.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2D51A4303E800D343A3 /* actor5_4.png */; }; + 8974E3231A4303E900D343A3 /* actor7_0.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2D61A4303E800D343A3 /* actor7_0.png */; }; + 8974E3241A4303E900D343A3 /* actor7_1.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2D71A4303E800D343A3 /* actor7_1.png */; }; + 8974E3251A4303E900D343A3 /* actor7_2.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2D81A4303E800D343A3 /* actor7_2.png */; }; + 8974E3261A4303E900D343A3 /* actor7_3.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2D91A4303E800D343A3 /* actor7_3.png */; }; + 8974E3271A4303E900D343A3 /* actor7_4.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2DA1A4303E800D343A3 /* actor7_4.png */; }; + 8974E3281A4303E900D343A3 /* actor8_0.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2DB1A4303E800D343A3 /* actor8_0.png */; }; + 8974E3291A4303E900D343A3 /* actor8_1.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2DC1A4303E800D343A3 /* actor8_1.png */; }; + 8974E32A1A4303E900D343A3 /* actor8_2.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2DD1A4303E800D343A3 /* actor8_2.png */; }; + 8974E32B1A4303E900D343A3 /* actor8_3.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2DE1A4303E800D343A3 /* actor8_3.png */; }; + 8974E32C1A4303E900D343A3 /* actor8_4.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2DF1A4303E800D343A3 /* actor8_4.png */; }; + 8974E32D1A4303E900D343A3 /* actor111.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2E01A4303E800D343A3 /* actor111.png */; }; + 8974E32E1A4303E900D343A3 /* actor113.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2E11A4303E800D343A3 /* actor113.png */; }; + 8974E32F1A4303E900D343A3 /* actor114.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2E21A4303E800D343A3 /* actor114.png */; }; + 8974E3301A4303E900D343A3 /* actor115.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2E31A4303E800D343A3 /* actor115.png */; }; + 8974E3311A4303E900D343A3 /* actor117.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2E41A4303E800D343A3 /* actor117.png */; }; + 8974E3321A4303E900D343A3 /* actor120.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2E51A4303E800D343A3 /* actor120.png */; }; + 8974E3331A4303E900D343A3 /* alert_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2E61A4303E800D343A3 /* alert_style1.tmx */; }; + 8974E3341A4303E900D343A3 /* alert_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2E71A4303E800D343A3 /* alert_style2.tmx */; }; + 8974E3351A4303E900D343A3 /* alert_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2E81A4303E800D343A3 /* alert_style3.tmx */; }; + 8974E3361A4303E900D343A3 /* attack_damage.plist in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2E91A4303E800D343A3 /* attack_damage.plist */; }; + 8974E3371A4303E900D343A3 /* attack_damage.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2EA1A4303E800D343A3 /* attack_damage.png */; }; + 8974E3381A4303E900D343A3 /* attack1.ExportJson in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2EB1A4303E800D343A3 /* attack1.ExportJson */; }; + 8974E3391A4303E900D343A3 /* attack2.ExportJson in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2EC1A4303E800D343A3 /* attack2.ExportJson */; }; + 8974E33A1A4303E900D343A3 /* attack3.ExportJson in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2ED1A4303E800D343A3 /* attack3.ExportJson */; }; + 8974E33B1A4303E900D343A3 /* attack4.ExportJson in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2EE1A4303E800D343A3 /* attack4.ExportJson */; }; + 8974E33C1A4303E900D343A3 /* attack10.plist in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2EF1A4303E800D343A3 /* attack10.plist */; }; + 8974E33D1A4303E900D343A3 /* attack10.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2F01A4303E800D343A3 /* attack10.png */; }; + 8974E33E1A4303E900D343A3 /* attack20.plist in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2F11A4303E800D343A3 /* attack20.plist */; }; + 8974E33F1A4303E900D343A3 /* attack20.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2F21A4303E800D343A3 /* attack20.png */; }; + 8974E3401A4303E900D343A3 /* attack30.plist in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2F31A4303E800D343A3 /* attack30.plist */; }; + 8974E3411A4303E900D343A3 /* attack30.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2F41A4303E800D343A3 /* attack30.png */; }; + 8974E3421A4303E900D343A3 /* attack40.plist in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2F51A4303E800D343A3 /* attack40.plist */; }; + 8974E3431A4303E900D343A3 /* attack40.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2F61A4303E800D343A3 /* attack40.png */; }; + 8974E3441A4303E900D343A3 /* audio_battle_attack1.wav in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2F71A4303E800D343A3 /* audio_battle_attack1.wav */; }; + 8974E3451A4303E900D343A3 /* audio_battle_attack2.wav in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2F81A4303E800D343A3 /* audio_battle_attack2.wav */; }; + 8974E3461A4303E900D343A3 /* audio_battle_end.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2F91A4303E800D343A3 /* audio_battle_end.mp3 */; }; + 8974E3471A4303E900D343A3 /* audio_battle_lose.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2FA1A4303E800D343A3 /* audio_battle_lose.mp3 */; }; + 8974E3481A4303E900D343A3 /* audio_battle_menu.wav in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2FB1A4303E800D343A3 /* audio_battle_menu.wav */; }; + 8974E3491A4303E900D343A3 /* audio_battle_start.wav in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2FC1A4303E800D343A3 /* audio_battle_start.wav */; }; + 8974E34A1A4303E900D343A3 /* audio_battle.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2FD1A4303E800D343A3 /* audio_battle.mp3 */; }; + 8974E34B1A4303E900D343A3 /* audio_effect_btn.wav in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2FE1A4303E800D343A3 /* audio_effect_btn.wav */; }; + 8974E34C1A4303E900D343A3 /* audio_inn.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = 8974E2FF1A4303E800D343A3 /* audio_inn.mp3 */; }; + 8974E34D1A4303E900D343A3 /* audio_map_01.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3001A4303E800D343A3 /* audio_map_01.mp3 */; }; + 8974E34E1A4303E900D343A3 /* audio_map_02.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3011A4303E800D343A3 /* audio_map_02.mp3 */; }; + 8974E34F1A4303E900D343A3 /* audio_map_03.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3021A4303E800D343A3 /* audio_map_03.mp3 */; }; + 8974E3501A4303E900D343A3 /* audio_skill_cure.wav in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3031A4303E800D343A3 /* audio_skill_cure.wav */; }; + 8974E3511A4303E900D343A3 /* audio_skill_fire.wav in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3041A4303E800D343A3 /* audio_skill_fire.wav */; }; + 8974E3521A4303E900D343A3 /* audio_start_btn.wav in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3051A4303E800D343A3 /* audio_start_btn.wav */; }; + 8974E3531A4303E900D343A3 /* audio_start.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3061A4303E800D343A3 /* audio_start.mp3 */; }; + 8974E3541A4303E900D343A3 /* audio_use_items.wav in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3071A4303E800D343A3 /* audio_use_items.wav */; }; + 8974E3551A4303E900D343A3 /* battle_battlemenu_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3081A4303E800D343A3 /* battle_battlemenu_style1.tmx */; }; + 8974E3561A4303E900D343A3 /* battle_battlemenu_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3091A4303E800D343A3 /* battle_battlemenu_style2.tmx */; }; + 8974E3571A4303E900D343A3 /* battle_battlemenu_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E30A1A4303E800D343A3 /* battle_battlemenu_style3.tmx */; }; + 8974E3581A4303E900D343A3 /* battle_bg.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E30B1A4303E800D343A3 /* battle_bg.png */; }; + 8974E3591A4303E900D343A3 /* battle_menu_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E30C1A4303E800D343A3 /* battle_menu_style1.tmx */; }; + 8974E35A1A4303E900D343A3 /* battle_menu_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E30D1A4303E800D343A3 /* battle_menu_style2.tmx */; }; + 8974E35B1A4303E900D343A3 /* battle_menu_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E30E1A4303E800D343A3 /* battle_menu_style3.tmx */; }; + 8974E35C1A4303E900D343A3 /* battle_msg_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E30F1A4303E800D343A3 /* battle_msg_style1.tmx */; }; + 8974E35D1A4303E900D343A3 /* battle_msg_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3101A4303E800D343A3 /* battle_msg_style2.tmx */; }; + 8974E35E1A4303E900D343A3 /* battle_msg_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3111A4303E800D343A3 /* battle_msg_style3.tmx */; }; + 8974E35F1A4303E900D343A3 /* battle_select_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3121A4303E900D343A3 /* battle_select_style1.tmx */; }; + 8974E3601A4303E900D343A3 /* battle_select_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3131A4303E900D343A3 /* battle_select_style2.tmx */; }; + 8974E3611A4303E900D343A3 /* battle_select_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3141A4303E900D343A3 /* battle_select_style3.tmx */; }; + 8974E3621A4303E900D343A3 /* db.sys in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3151A4303E900D343A3 /* db.sys */; }; + 8974E3631A4303E900D343A3 /* dialog_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3161A4303E900D343A3 /* dialog_style1.tmx */; }; + 8974E3641A4303E900D343A3 /* dialog_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3171A4303E900D343A3 /* dialog_style2.tmx */; }; + 8974E3651A4303E900D343A3 /* dialog_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3181A4303E900D343A3 /* dialog_style3.tmx */; }; + 8974E3991A43043600D343A3 /* OzgCCScrollBgNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E3671A43043600D343A3 /* OzgCCScrollBgNode.cpp */; }; + 8974E39A1A43043600D343A3 /* OzgCCUtility.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E3691A43043600D343A3 /* OzgCCUtility.cpp */; }; + 8974E39B1A43043600D343A3 /* OzgFileUtility.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E36B1A43043600D343A3 /* OzgFileUtility.cpp */; }; + 8974E39C1A43043600D343A3 /* OzgJoystickLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E36D1A43043600D343A3 /* OzgJoystickLayer.cpp */; }; + 8974E39D1A43043600D343A3 /* RPGBaseSceneLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E36F1A43043600D343A3 /* RPGBaseSceneLayer.cpp */; }; + 8974E39E1A43043600D343A3 /* RPGBattleMenu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E3711A43043600D343A3 /* RPGBattleMenu.cpp */; }; + 8974E39F1A43043600D343A3 /* RPGBattleMonsterSprite.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E3731A43043600D343A3 /* RPGBattleMonsterSprite.cpp */; }; + 8974E3A01A43043600D343A3 /* RPGBattlePlayerSprite.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E3751A43043600D343A3 /* RPGBattlePlayerSprite.cpp */; }; + 8974E3A11A43043600D343A3 /* RPGBattleSceneLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E3771A43043600D343A3 /* RPGBattleSceneLayer.cpp */; }; + 8974E3A21A43043600D343A3 /* RPGComputingResults.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E3791A43043600D343A3 /* RPGComputingResults.cpp */; }; + 8974E3A31A43043600D343A3 /* RPGData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E37B1A43043600D343A3 /* RPGData.cpp */; }; + 8974E3A41A43043600D343A3 /* RPGDialogLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E37D1A43043600D343A3 /* RPGDialogLayer.cpp */; }; + 8974E3A51A43043600D343A3 /* RPGLoadingSceneLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E37F1A43043600D343A3 /* RPGLoadingSceneLayer.cpp */; }; + 8974E3A61A43043600D343A3 /* RPGMapChoicePlayerMenuLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E3811A43043600D343A3 /* RPGMapChoicePlayerMenuLayer.cpp */; }; + 8974E3A71A43043600D343A3 /* RPGMapDialogLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E3831A43043600D343A3 /* RPGMapDialogLayer.cpp */; }; + 8974E3A81A43043600D343A3 /* RPGMapEquipMenuLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E3851A43043600D343A3 /* RPGMapEquipMenuLayer.cpp */; }; + 8974E3A91A43043600D343A3 /* RPGMapItemsMenuLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E3871A43043600D343A3 /* RPGMapItemsMenuLayer.cpp */; }; + 8974E3AA1A43043600D343A3 /* RPGMapMenuLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E3891A43043600D343A3 /* RPGMapMenuLayer.cpp */; }; + 8974E3AB1A43043600D343A3 /* RPGMapNPCRoleSprite.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E38B1A43043600D343A3 /* RPGMapNPCRoleSprite.cpp */; }; + 8974E3AC1A43043600D343A3 /* RPGMapRoleSprite.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E38D1A43043600D343A3 /* RPGMapRoleSprite.cpp */; }; + 8974E3AD1A43043600D343A3 /* RPGMapSceneLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E38F1A43043600D343A3 /* RPGMapSceneLayer.cpp */; }; + 8974E3AE1A43043600D343A3 /* RPGMapSkillMenuLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E3911A43043600D343A3 /* RPGMapSkillMenuLayer.cpp */; }; + 8974E3AF1A43043600D343A3 /* RPGMapStatusMenuLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E3931A43043600D343A3 /* RPGMapStatusMenuLayer.cpp */; }; + 8974E3B01A43043600D343A3 /* RPGResultsLogic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E3951A43043600D343A3 /* RPGResultsLogic.cpp */; }; + 8974E3B11A43043600D343A3 /* RPGStartSceneLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E3971A43043600D343A3 /* RPGStartSceneLayer.cpp */; }; + 8974E3B51A43045000D343A3 /* CppSQLite3.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E3B31A43045000D343A3 /* CppSQLite3.cpp */; }; + 8974E3BF1A4304A300D343A3 /* Array.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E3B71A4304A300D343A3 /* Array.cpp */; }; + 8974E3C01A4304A300D343A3 /* Convert.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E3B81A4304A300D343A3 /* Convert.cpp */; }; + 8974E3C11A4304A300D343A3 /* Escaper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E3B91A4304A300D343A3 /* Escaper.cpp */; }; + 8974E3C21A4304A300D343A3 /* IndentCanceller.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E3BA1A4304A300D343A3 /* IndentCanceller.cpp */; }; + 8974E3C31A4304A300D343A3 /* Indenter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E3BB1A4304A300D343A3 /* Indenter.cpp */; }; + 8974E3C41A4304A300D343A3 /* Object.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E3BC1A4304A300D343A3 /* Object.cpp */; }; + 8974E3C51A4304A300D343A3 /* SolidusEscaper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E3BD1A4304A300D343A3 /* SolidusEscaper.cpp */; }; + 8974E3C61A4304A300D343A3 /* Value.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E3BE1A4304A300D343A3 /* Value.cpp */; }; + 8974E3C81A4305F000D343A3 /* libsqlite3.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 8974E3C71A4305F000D343A3 /* libsqlite3.dylib */; }; + 8974E3CA1A43064900D343A3 /* fzcyjt.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3C91A43064900D343A3 /* fzcyjt.ttf */; }; BF171245129291EC00B8313A /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BF170DB012928DE900B8313A /* OpenGLES.framework */; }; BF1712461292920000B8313A /* libxml2.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = BF170DB212928DE900B8313A /* libxml2.dylib */; }; BF1712471292920000B8313A /* libz.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = BF170DB412928DE900B8313A /* libz.dylib */; }; @@ -695,6 +695,177 @@ 15A3DA8C1682F8A6002FB0C5 /* SimpleAudioEngine.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = SimpleAudioEngine.mm; sourceTree = ""; }; 15A3DA8D1682F8A6002FB0C5 /* SimpleAudioEngine_objc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SimpleAudioEngine_objc.h; sourceTree = ""; }; 15A3DA8E1682F8A6002FB0C5 /* SimpleAudioEngine_objc.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SimpleAudioEngine_objc.m; sourceTree = ""; }; + 15C0B47D196D412E007F909D /* CCActionEaseEx.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCActionEaseEx.cpp; sourceTree = ""; }; + 15C0B47E196D412E007F909D /* CCActionEaseEx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCActionEaseEx.h; sourceTree = ""; }; + 15C0B47F196D412E007F909D /* CCActionFrame.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCActionFrame.cpp; sourceTree = ""; }; + 15C0B480196D412E007F909D /* CCActionFrame.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCActionFrame.h; sourceTree = ""; }; + 15C0B481196D412E007F909D /* CCActionFrameEasing.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCActionFrameEasing.cpp; sourceTree = ""; }; + 15C0B482196D412E007F909D /* CCActionFrameEasing.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCActionFrameEasing.h; sourceTree = ""; }; + 15C0B483196D412E007F909D /* CCActionManager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCActionManager.cpp; sourceTree = ""; }; + 15C0B484196D412E007F909D /* CCActionManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCActionManager.h; sourceTree = ""; }; + 15C0B485196D412E007F909D /* CCActionNode.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCActionNode.cpp; sourceTree = ""; }; + 15C0B486196D412F007F909D /* CCActionNode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCActionNode.h; sourceTree = ""; }; + 15C0B487196D412F007F909D /* CCActionObject.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCActionObject.cpp; sourceTree = ""; }; + 15C0B488196D412F007F909D /* CCActionObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCActionObject.h; sourceTree = ""; }; + 15C0B48A196D412F007F909D /* CCActionTimeline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCActionTimeline.cpp; sourceTree = ""; }; + 15C0B48B196D412F007F909D /* CCActionTimeline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCActionTimeline.h; sourceTree = ""; }; + 15C0B48C196D412F007F909D /* CCActionTimelineCache.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCActionTimelineCache.cpp; sourceTree = ""; }; + 15C0B48D196D412F007F909D /* CCActionTimelineCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCActionTimelineCache.h; sourceTree = ""; }; + 15C0B48E196D412F007F909D /* CCFrame.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCFrame.cpp; sourceTree = ""; }; + 15C0B48F196D412F007F909D /* CCFrame.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCFrame.h; sourceTree = ""; }; + 15C0B490196D412F007F909D /* CCNodeReader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCNodeReader.cpp; sourceTree = ""; }; + 15C0B491196D412F007F909D /* CCNodeReader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCNodeReader.h; sourceTree = ""; }; + 15C0B492196D412F007F909D /* CCTimeLine.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCTimeLine.cpp; sourceTree = ""; }; + 15C0B493196D412F007F909D /* CCTimeLine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCTimeLine.h; sourceTree = ""; }; + 15C0B494196D412F007F909D /* CCTimelineMacro.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCTimelineMacro.h; sourceTree = ""; }; + 15C0B497196D412F007F909D /* CCArmatureAnimation.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCArmatureAnimation.cpp; sourceTree = ""; }; + 15C0B498196D412F007F909D /* CCArmatureAnimation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCArmatureAnimation.h; sourceTree = ""; }; + 15C0B499196D412F007F909D /* CCProcessBase.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCProcessBase.cpp; sourceTree = ""; }; + 15C0B49A196D412F007F909D /* CCProcessBase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCProcessBase.h; sourceTree = ""; }; + 15C0B49B196D412F007F909D /* CCTween.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCTween.cpp; sourceTree = ""; }; + 15C0B49C196D412F007F909D /* CCTween.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCTween.h; sourceTree = ""; }; + 15C0B49D196D412F007F909D /* CCArmature.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCArmature.cpp; sourceTree = ""; }; + 15C0B49E196D412F007F909D /* CCArmature.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCArmature.h; sourceTree = ""; }; + 15C0B49F196D412F007F909D /* CCBone.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCBone.cpp; sourceTree = ""; }; + 15C0B4A0196D412F007F909D /* CCBone.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBone.h; sourceTree = ""; }; + 15C0B4A2196D412F007F909D /* CCDatas.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCDatas.cpp; sourceTree = ""; }; + 15C0B4A3196D412F007F909D /* CCDatas.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCDatas.h; sourceTree = ""; }; + 15C0B4A5196D412F007F909D /* CCBatchNode.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCBatchNode.cpp; sourceTree = ""; }; + 15C0B4A6196D412F007F909D /* CCBatchNode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBatchNode.h; sourceTree = ""; }; + 15C0B4A7196D412F007F909D /* CCDecorativeDisplay.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCDecorativeDisplay.cpp; sourceTree = ""; }; + 15C0B4A8196D412F007F909D /* CCDecorativeDisplay.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCDecorativeDisplay.h; sourceTree = ""; }; + 15C0B4A9196D412F007F909D /* CCDisplayFactory.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCDisplayFactory.cpp; sourceTree = ""; }; + 15C0B4AA196D412F007F909D /* CCDisplayFactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCDisplayFactory.h; sourceTree = ""; }; + 15C0B4AB196D412F007F909D /* CCDisplayManager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCDisplayManager.cpp; sourceTree = ""; }; + 15C0B4AC196D412F007F909D /* CCDisplayManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCDisplayManager.h; sourceTree = ""; }; + 15C0B4AD196D412F007F909D /* CCSkin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCSkin.cpp; sourceTree = ""; }; + 15C0B4AE196D412F007F909D /* CCSkin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCSkin.h; sourceTree = ""; }; + 15C0B4B0196D412F007F909D /* sigslot.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sigslot.h; sourceTree = ""; }; + 15C0B4B2196D412F007F909D /* CCColliderDetector.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCColliderDetector.cpp; sourceTree = ""; }; + 15C0B4B3196D412F007F909D /* CCColliderDetector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCColliderDetector.h; sourceTree = ""; }; + 15C0B4B5196D412F007F909D /* CCArmatureDataManager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCArmatureDataManager.cpp; sourceTree = ""; }; + 15C0B4B6196D412F007F909D /* CCArmatureDataManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCArmatureDataManager.h; sourceTree = ""; }; + 15C0B4B7196D412F007F909D /* CCArmatureDefine.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCArmatureDefine.cpp; sourceTree = ""; }; + 15C0B4B8196D412F007F909D /* CCArmatureDefine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCArmatureDefine.h; sourceTree = ""; }; + 15C0B4B9196D412F007F909D /* CCDataReaderHelper.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCDataReaderHelper.cpp; sourceTree = ""; }; + 15C0B4BA196D412F007F909D /* CCDataReaderHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCDataReaderHelper.h; sourceTree = ""; }; + 15C0B4BB196D412F007F909D /* CCSpriteFrameCacheHelper.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCSpriteFrameCacheHelper.cpp; sourceTree = ""; }; + 15C0B4BC196D412F007F909D /* CCSpriteFrameCacheHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCSpriteFrameCacheHelper.h; sourceTree = ""; }; + 15C0B4BD196D412F007F909D /* CCTransformHelp.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCTransformHelp.cpp; sourceTree = ""; }; + 15C0B4BE196D412F007F909D /* CCTransformHelp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCTransformHelp.h; sourceTree = ""; }; + 15C0B4BF196D412F007F909D /* CCTweenFunction.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCTweenFunction.cpp; sourceTree = ""; }; + 15C0B4C0196D412F007F909D /* CCTweenFunction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCTweenFunction.h; sourceTree = ""; }; + 15C0B4C1196D412F007F909D /* CCUtilMath.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCUtilMath.cpp; sourceTree = ""; }; + 15C0B4C2196D412F007F909D /* CCUtilMath.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCUtilMath.h; sourceTree = ""; }; + 15C0B4C4196D412F007F909D /* CCComAttribute.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCComAttribute.cpp; sourceTree = ""; }; + 15C0B4C5196D412F007F909D /* CCComAttribute.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCComAttribute.h; sourceTree = ""; }; + 15C0B4C6196D412F007F909D /* CCComAudio.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCComAudio.cpp; sourceTree = ""; }; + 15C0B4C7196D412F007F909D /* CCComAudio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCComAudio.h; sourceTree = ""; }; + 15C0B4C8196D412F007F909D /* CCComBase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCComBase.h; sourceTree = ""; }; + 15C0B4C9196D412F007F909D /* CCComController.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCComController.cpp; sourceTree = ""; }; + 15C0B4CA196D412F007F909D /* CCComController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCComController.h; sourceTree = ""; }; + 15C0B4CB196D412F007F909D /* CCComRender.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCComRender.cpp; sourceTree = ""; }; + 15C0B4CC196D412F007F909D /* CCComRender.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCComRender.h; sourceTree = ""; }; + 15C0B4CD196D412F007F909D /* CCInputDelegate.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCInputDelegate.cpp; sourceTree = ""; }; + 15C0B4CE196D412F007F909D /* CCInputDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCInputDelegate.h; sourceTree = ""; }; + 15C0B4D1196D412F007F909D /* UIWidget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UIWidget.cpp; sourceTree = ""; }; + 15C0B4D2196D412F007F909D /* UIWidget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UIWidget.h; sourceTree = ""; }; + 15C0B4D4196D412F007F909D /* UILayout.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UILayout.cpp; sourceTree = ""; }; + 15C0B4D5196D412F007F909D /* UILayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UILayout.h; sourceTree = ""; }; + 15C0B4D6196D412F007F909D /* UILayoutDefine.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UILayoutDefine.cpp; sourceTree = ""; }; + 15C0B4D7196D412F007F909D /* UILayoutDefine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UILayoutDefine.h; sourceTree = ""; }; + 15C0B4D8196D412F007F909D /* UILayoutParameter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UILayoutParameter.cpp; sourceTree = ""; }; + 15C0B4D9196D412F007F909D /* UILayoutParameter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UILayoutParameter.h; sourceTree = ""; }; + 15C0B4DB196D412F007F909D /* CocosGUI.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CocosGUI.cpp; sourceTree = ""; }; + 15C0B4DC196D412F007F909D /* CocosGUI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CocosGUI.h; sourceTree = ""; }; + 15C0B4DD196D412F007F909D /* GUIDefine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GUIDefine.h; sourceTree = ""; }; + 15C0B4DE196D412F007F909D /* UIHelper.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UIHelper.cpp; sourceTree = ""; }; + 15C0B4DF196D412F007F909D /* UIHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UIHelper.h; sourceTree = ""; }; + 15C0B4E0196D412F007F909D /* UITouchGroup.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UITouchGroup.cpp; sourceTree = ""; }; + 15C0B4E1196D412F007F909D /* UITouchGroup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UITouchGroup.h; sourceTree = ""; }; + 15C0B4E4196D412F007F909D /* CompatibleClasses.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CompatibleClasses.h; sourceTree = ""; }; + 15C0B4E6196D412F007F909D /* UIListView.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UIListView.cpp; sourceTree = ""; }; + 15C0B4E7196D412F007F909D /* UIListView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UIListView.h; sourceTree = ""; }; + 15C0B4E8196D412F007F909D /* UIPageView.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UIPageView.cpp; sourceTree = ""; }; + 15C0B4E9196D412F007F909D /* UIPageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UIPageView.h; sourceTree = ""; }; + 15C0B4EA196D412F007F909D /* UIScrollInterface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UIScrollInterface.h; sourceTree = ""; }; + 15C0B4EB196D412F007F909D /* UIScrollView.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UIScrollView.cpp; sourceTree = ""; }; + 15C0B4EC196D412F007F909D /* UIScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UIScrollView.h; sourceTree = ""; }; + 15C0B4ED196D412F007F909D /* UIButton.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UIButton.cpp; sourceTree = ""; }; + 15C0B4EE196D412F007F909D /* UIButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UIButton.h; sourceTree = ""; }; + 15C0B4EF196D412F007F909D /* UICheckBox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UICheckBox.cpp; sourceTree = ""; }; + 15C0B4F0196D412F007F909D /* UICheckBox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UICheckBox.h; sourceTree = ""; }; + 15C0B4F1196D412F007F909D /* UIImageView.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UIImageView.cpp; sourceTree = ""; }; + 15C0B4F2196D412F007F909D /* UIImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UIImageView.h; sourceTree = ""; }; + 15C0B4F3196D412F007F909D /* UILabel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UILabel.cpp; sourceTree = ""; }; + 15C0B4F4196D412F007F909D /* UILabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UILabel.h; sourceTree = ""; }; + 15C0B4F5196D412F007F909D /* UILabelAtlas.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UILabelAtlas.cpp; sourceTree = ""; }; + 15C0B4F6196D412F007F909D /* UILabelAtlas.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UILabelAtlas.h; sourceTree = ""; }; + 15C0B4F7196D412F007F909D /* UILabelBMFont.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UILabelBMFont.cpp; sourceTree = ""; }; + 15C0B4F8196D412F007F909D /* UILabelBMFont.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UILabelBMFont.h; sourceTree = ""; }; + 15C0B4F9196D412F007F909D /* UILoadingBar.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UILoadingBar.cpp; sourceTree = ""; }; + 15C0B4FA196D412F007F909D /* UILoadingBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UILoadingBar.h; sourceTree = ""; }; + 15C0B4FB196D412F007F909D /* UIRichText.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UIRichText.cpp; sourceTree = ""; }; + 15C0B4FC196D412F007F909D /* UIRichText.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UIRichText.h; sourceTree = ""; }; + 15C0B4FD196D412F007F909D /* UISlider.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UISlider.cpp; sourceTree = ""; }; + 15C0B4FE196D412F007F909D /* UISlider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UISlider.h; sourceTree = ""; }; + 15C0B4FF196D412F007F909D /* UITextField.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UITextField.cpp; sourceTree = ""; }; + 15C0B500196D412F007F909D /* UITextField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UITextField.h; sourceTree = ""; }; + 15C0B502196D412F007F909D /* CocoLoader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CocoLoader.cpp; sourceTree = ""; }; + 15C0B503196D412F007F909D /* CocoLoader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CocoLoader.h; sourceTree = ""; }; + 15C0B504196D412F007F909D /* DictionaryHelper.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = DictionaryHelper.cpp; sourceTree = ""; }; + 15C0B505196D412F007F909D /* DictionaryHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DictionaryHelper.h; sourceTree = ""; }; + 15C0B507196D412F007F909D /* document.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = document.h; sourceTree = ""; }; + 15C0B508196D412F007F909D /* filestream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = filestream.h; sourceTree = ""; }; + 15C0B50A196D412F007F909D /* pow10.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pow10.h; sourceTree = ""; }; + 15C0B50B196D412F007F909D /* stack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stack.h; sourceTree = ""; }; + 15C0B50C196D412F007F909D /* strfunc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = strfunc.h; sourceTree = ""; }; + 15C0B50D196D412F007F909D /* prettywriter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = prettywriter.h; sourceTree = ""; }; + 15C0B50E196D412F007F909D /* rapidjson.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rapidjson.h; sourceTree = ""; }; + 15C0B50F196D412F007F909D /* reader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = reader.h; sourceTree = ""; }; + 15C0B510196D412F007F909D /* stringbuffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stringbuffer.h; sourceTree = ""; }; + 15C0B511196D412F007F909D /* writer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = writer.h; sourceTree = ""; }; + 15C0B513196D412F007F909D /* GUIReader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = GUIReader.cpp; sourceTree = ""; }; + 15C0B514196D412F007F909D /* GUIReader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GUIReader.h; sourceTree = ""; }; + 15C0B515196D412F007F909D /* SceneReader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SceneReader.cpp; sourceTree = ""; }; + 15C0B516196D412F007F909D /* SceneReader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SceneReader.h; sourceTree = ""; }; + 15C0B519196D412F007F909D /* ButtonReader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ButtonReader.cpp; sourceTree = ""; }; + 15C0B51A196D412F007F909D /* ButtonReader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ButtonReader.h; sourceTree = ""; }; + 15C0B51C196D412F007F909D /* CheckBoxReader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CheckBoxReader.cpp; sourceTree = ""; }; + 15C0B51D196D412F007F909D /* CheckBoxReader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CheckBoxReader.h; sourceTree = ""; }; + 15C0B51F196D412F007F909D /* ImageViewReader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ImageViewReader.cpp; sourceTree = ""; }; + 15C0B520196D412F007F909D /* ImageViewReader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ImageViewReader.h; sourceTree = ""; }; + 15C0B522196D412F007F909D /* LabelAtlasReader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LabelAtlasReader.cpp; sourceTree = ""; }; + 15C0B523196D412F007F909D /* LabelAtlasReader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LabelAtlasReader.h; sourceTree = ""; }; + 15C0B525196D412F007F909D /* LabelBMFontReader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LabelBMFontReader.cpp; sourceTree = ""; }; + 15C0B526196D412F007F909D /* LabelBMFontReader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LabelBMFontReader.h; sourceTree = ""; }; + 15C0B528196D412F007F909D /* LabelReader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LabelReader.cpp; sourceTree = ""; }; + 15C0B529196D412F007F909D /* LabelReader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LabelReader.h; sourceTree = ""; }; + 15C0B52B196D412F007F909D /* LayoutReader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LayoutReader.cpp; sourceTree = ""; }; + 15C0B52C196D412F007F909D /* LayoutReader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LayoutReader.h; sourceTree = ""; }; + 15C0B52E196D412F007F909D /* ListViewReader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ListViewReader.cpp; sourceTree = ""; }; + 15C0B52F196D412F007F909D /* ListViewReader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ListViewReader.h; sourceTree = ""; }; + 15C0B531196D412F007F909D /* LoadingBarReader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LoadingBarReader.cpp; sourceTree = ""; }; + 15C0B532196D412F007F909D /* LoadingBarReader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoadingBarReader.h; sourceTree = ""; }; + 15C0B534196D412F007F909D /* PageViewReader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PageViewReader.cpp; sourceTree = ""; }; + 15C0B535196D412F007F909D /* PageViewReader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PageViewReader.h; sourceTree = ""; }; + 15C0B537196D412F007F909D /* ScrollViewReader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ScrollViewReader.cpp; sourceTree = ""; }; + 15C0B538196D412F007F909D /* ScrollViewReader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ScrollViewReader.h; sourceTree = ""; }; + 15C0B53A196D412F007F909D /* SliderReader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SliderReader.cpp; sourceTree = ""; }; + 15C0B53B196D412F007F909D /* SliderReader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SliderReader.h; sourceTree = ""; }; + 15C0B53D196D412F007F909D /* TextFieldReader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = TextFieldReader.cpp; sourceTree = ""; }; + 15C0B53E196D412F007F909D /* TextFieldReader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TextFieldReader.h; sourceTree = ""; }; + 15C0B53F196D412F007F909D /* WidgetReader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = WidgetReader.cpp; sourceTree = ""; }; + 15C0B540196D412F007F909D /* WidgetReader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WidgetReader.h; sourceTree = ""; }; + 15C0B541196D412F007F909D /* WidgetReaderProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WidgetReaderProtocol.h; sourceTree = ""; }; + 15C0B543196D412F007F909D /* ObjectFactory.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ObjectFactory.cpp; sourceTree = ""; }; + 15C0B544196D412F007F909D /* ObjectFactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ObjectFactory.h; sourceTree = ""; }; + 15C0B545196D412F007F909D /* TriggerBase.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = TriggerBase.cpp; sourceTree = ""; }; + 15C0B546196D412F007F909D /* TriggerBase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TriggerBase.h; sourceTree = ""; }; + 15C0B547196D412F007F909D /* TriggerMng.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = TriggerMng.cpp; sourceTree = ""; }; + 15C0B548196D412F007F909D /* TriggerMng.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TriggerMng.h; sourceTree = ""; }; + 15C0B549196D412F007F909D /* TriggerObj.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = TriggerObj.cpp; sourceTree = ""; }; + 15C0B54A196D412F007F909D /* TriggerObj.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TriggerObj.h; sourceTree = ""; }; 1A27573D1697CF2B00504026 /* CCEditBoxImplAndroid.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCEditBoxImplAndroid.cpp; sourceTree = ""; }; 1A27573E1697CF2B00504026 /* CCEditBoxImplAndroid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCEditBoxImplAndroid.h; sourceTree = ""; }; 1A8F3B43175E05DA00049216 /* Animation.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Animation.cpp; sourceTree = ""; }; @@ -759,373 +930,193 @@ 1D6058910D05DD3D006BFB54 /* OzgGameRPG.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = OzgGameRPG.app; sourceTree = BUILT_PRODUCTS_DIR; }; 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; 288765A40DF7441C002DB57D /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; - 298B299118D0668400C1920F /* ButtonReader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ButtonReader.cpp; sourceTree = ""; }; - 298B299218D0668400C1920F /* ButtonReader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ButtonReader.h; sourceTree = ""; }; - 298B299418D0668400C1920F /* CheckBoxReader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CheckBoxReader.cpp; sourceTree = ""; }; - 298B299518D0668400C1920F /* CheckBoxReader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CheckBoxReader.h; sourceTree = ""; }; - 298B299718D0668400C1920F /* ImageViewReader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ImageViewReader.cpp; sourceTree = ""; }; - 298B299818D0668400C1920F /* ImageViewReader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ImageViewReader.h; sourceTree = ""; }; - 298B299A18D0668400C1920F /* LabelAtlasReader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LabelAtlasReader.cpp; sourceTree = ""; }; - 298B299B18D0668400C1920F /* LabelAtlasReader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LabelAtlasReader.h; sourceTree = ""; }; - 298B299D18D0668400C1920F /* LabelBMFontReader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LabelBMFontReader.cpp; sourceTree = ""; }; - 298B299E18D0668400C1920F /* LabelBMFontReader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LabelBMFontReader.h; sourceTree = ""; }; - 298B29A018D0668400C1920F /* LabelReader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LabelReader.cpp; sourceTree = ""; }; - 298B29A118D0668400C1920F /* LabelReader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LabelReader.h; sourceTree = ""; }; - 298B29A318D0668400C1920F /* LayoutReader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LayoutReader.cpp; sourceTree = ""; }; - 298B29A418D0668400C1920F /* LayoutReader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LayoutReader.h; sourceTree = ""; }; - 298B29A618D0668400C1920F /* ListViewReader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ListViewReader.cpp; sourceTree = ""; }; - 298B29A718D0668400C1920F /* ListViewReader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ListViewReader.h; sourceTree = ""; }; - 298B29A918D0668400C1920F /* LoadingBarReader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LoadingBarReader.cpp; sourceTree = ""; }; - 298B29AA18D0668400C1920F /* LoadingBarReader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoadingBarReader.h; sourceTree = ""; }; - 298B29AC18D0668400C1920F /* PageViewReader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PageViewReader.cpp; sourceTree = ""; }; - 298B29AD18D0668400C1920F /* PageViewReader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PageViewReader.h; sourceTree = ""; }; - 298B29AF18D0668400C1920F /* ScrollViewReader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ScrollViewReader.cpp; sourceTree = ""; }; - 298B29B018D0668400C1920F /* ScrollViewReader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ScrollViewReader.h; sourceTree = ""; }; - 298B29B218D0668400C1920F /* SliderReader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SliderReader.cpp; sourceTree = ""; }; - 298B29B318D0668400C1920F /* SliderReader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SliderReader.h; sourceTree = ""; }; - 298B29B518D0668400C1920F /* TextFieldReader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = TextFieldReader.cpp; sourceTree = ""; }; - 298B29B618D0668400C1920F /* TextFieldReader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TextFieldReader.h; sourceTree = ""; }; - 298B29B718D0668400C1920F /* WidgetReader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = WidgetReader.cpp; sourceTree = ""; }; - 298B29B818D0668400C1920F /* WidgetReader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WidgetReader.h; sourceTree = ""; }; - 298B29B918D0668400C1920F /* WidgetReaderProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WidgetReaderProtocol.h; sourceTree = ""; }; - 373B911F18788FB000198F86 /* CCComBase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCComBase.h; sourceTree = ""; }; - 375BD4BB1868411B0024609E /* ObjectFactory.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ObjectFactory.cpp; sourceTree = ""; }; - 375BD4BC1868411B0024609E /* ObjectFactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ObjectFactory.h; sourceTree = ""; }; - 375BD4BD1868411B0024609E /* TriggerBase.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = TriggerBase.cpp; sourceTree = ""; }; - 375BD4BE1868411B0024609E /* TriggerBase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TriggerBase.h; sourceTree = ""; }; - 375BD4BF1868411B0024609E /* TriggerMng.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = TriggerMng.cpp; sourceTree = ""; }; - 375BD4C01868411B0024609E /* TriggerMng.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TriggerMng.h; sourceTree = ""; }; - 375BD4C11868411B0024609E /* TriggerObj.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = TriggerObj.cpp; sourceTree = ""; }; - 375BD4C21868411B0024609E /* TriggerObj.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TriggerObj.h; sourceTree = ""; }; - 375BD4C8186841280024609E /* document.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = document.h; sourceTree = ""; }; - 375BD4C9186841280024609E /* filestream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = filestream.h; sourceTree = ""; }; - 375BD4CB186841280024609E /* pow10.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pow10.h; sourceTree = ""; }; - 375BD4CC186841280024609E /* stack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stack.h; sourceTree = ""; }; - 375BD4CD186841280024609E /* strfunc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = strfunc.h; sourceTree = ""; }; - 375BD4CE186841280024609E /* prettywriter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = prettywriter.h; sourceTree = ""; }; - 375BD4CF186841280024609E /* rapidjson.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rapidjson.h; sourceTree = ""; }; - 375BD4D0186841280024609E /* reader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = reader.h; sourceTree = ""; }; - 375BD4D1186841280024609E /* stringbuffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stringbuffer.h; sourceTree = ""; }; - 375BD4D2186841280024609E /* writer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = writer.h; sourceTree = ""; }; - 375BD5021868454E0024609E /* CCActionEaseEx.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCActionEaseEx.cpp; sourceTree = ""; }; - 375BD5031868454E0024609E /* CCActionEaseEx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCActionEaseEx.h; sourceTree = ""; }; - 375BD5041868454E0024609E /* CCActionFrame.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCActionFrame.cpp; sourceTree = ""; }; - 375BD5051868454E0024609E /* CCActionFrame.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCActionFrame.h; sourceTree = ""; }; - 375BD5061868454E0024609E /* CCActionFrameEasing.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCActionFrameEasing.cpp; sourceTree = ""; }; - 375BD5071868454E0024609E /* CCActionFrameEasing.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCActionFrameEasing.h; sourceTree = ""; }; - 375BD5081868454E0024609E /* CCActionManager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCActionManager.cpp; sourceTree = ""; }; - 375BD5091868454E0024609E /* CCActionManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCActionManager.h; sourceTree = ""; }; - 375BD50A1868454E0024609E /* CCActionNode.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCActionNode.cpp; sourceTree = ""; }; - 375BD50B1868454E0024609E /* CCActionNode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCActionNode.h; sourceTree = ""; }; - 375BD50C1868454E0024609E /* CCActionObject.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCActionObject.cpp; sourceTree = ""; }; - 375BD50D1868454E0024609E /* CCActionObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCActionObject.h; sourceTree = ""; }; - 379BB90817F03F3700829B88 /* CCArmatureAnimation.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCArmatureAnimation.cpp; sourceTree = ""; }; - 379BB90917F03F3700829B88 /* CCArmatureAnimation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCArmatureAnimation.h; sourceTree = ""; }; - 379BB90A17F03F3700829B88 /* CCProcessBase.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCProcessBase.cpp; sourceTree = ""; }; - 379BB90B17F03F3700829B88 /* CCProcessBase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCProcessBase.h; sourceTree = ""; }; - 379BB90C17F03F3700829B88 /* CCTween.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCTween.cpp; sourceTree = ""; }; - 379BB90D17F03F3700829B88 /* CCTween.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCTween.h; sourceTree = ""; }; - 379BB90E17F03F3700829B88 /* CCArmature.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCArmature.cpp; sourceTree = ""; }; - 379BB90F17F03F3700829B88 /* CCArmature.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCArmature.h; sourceTree = ""; }; - 379BB91017F03F3700829B88 /* CCBone.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCBone.cpp; sourceTree = ""; }; - 379BB91117F03F3700829B88 /* CCBone.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBone.h; sourceTree = ""; }; - 379BB91317F03F3700829B88 /* CCDatas.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCDatas.cpp; sourceTree = ""; }; - 379BB91417F03F3700829B88 /* CCDatas.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCDatas.h; sourceTree = ""; }; - 379BB91617F03F3700829B88 /* CCBatchNode.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCBatchNode.cpp; sourceTree = ""; }; - 379BB91717F03F3700829B88 /* CCBatchNode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBatchNode.h; sourceTree = ""; }; - 379BB91817F03F3700829B88 /* CCDecorativeDisplay.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCDecorativeDisplay.cpp; sourceTree = ""; }; - 379BB91917F03F3700829B88 /* CCDecorativeDisplay.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCDecorativeDisplay.h; sourceTree = ""; }; - 379BB91A17F03F3700829B88 /* CCDisplayFactory.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCDisplayFactory.cpp; sourceTree = ""; }; - 379BB91B17F03F3700829B88 /* CCDisplayFactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCDisplayFactory.h; sourceTree = ""; }; - 379BB91C17F03F3700829B88 /* CCDisplayManager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCDisplayManager.cpp; sourceTree = ""; }; - 379BB91D17F03F3700829B88 /* CCDisplayManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCDisplayManager.h; sourceTree = ""; }; - 379BB91E17F03F3700829B88 /* CCSkin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCSkin.cpp; sourceTree = ""; }; - 379BB91F17F03F3700829B88 /* CCSkin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCSkin.h; sourceTree = ""; }; - 379BB92117F03F3700829B88 /* sigslot.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sigslot.h; sourceTree = ""; }; - 379BB92317F03F3700829B88 /* CCColliderDetector.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCColliderDetector.cpp; sourceTree = ""; }; - 379BB92417F03F3700829B88 /* CCColliderDetector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCColliderDetector.h; sourceTree = ""; }; - 379BB92617F03F3700829B88 /* CCArmatureDataManager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCArmatureDataManager.cpp; sourceTree = ""; }; - 379BB92717F03F3700829B88 /* CCArmatureDataManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCArmatureDataManager.h; sourceTree = ""; }; - 379BB92817F03F3700829B88 /* CCArmatureDefine.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCArmatureDefine.cpp; sourceTree = ""; }; - 379BB92917F03F3700829B88 /* CCArmatureDefine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCArmatureDefine.h; sourceTree = ""; }; - 379BB92A17F03F3700829B88 /* CCDataReaderHelper.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCDataReaderHelper.cpp; sourceTree = ""; }; - 379BB92B17F03F3700829B88 /* CCDataReaderHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCDataReaderHelper.h; sourceTree = ""; }; - 379BB92C17F03F3700829B88 /* CCSpriteFrameCacheHelper.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCSpriteFrameCacheHelper.cpp; sourceTree = ""; }; - 379BB92D17F03F3700829B88 /* CCSpriteFrameCacheHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCSpriteFrameCacheHelper.h; sourceTree = ""; }; - 379BB92E17F03F3700829B88 /* CCTransformHelp.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCTransformHelp.cpp; sourceTree = ""; }; - 379BB92F17F03F3700829B88 /* CCTransformHelp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCTransformHelp.h; sourceTree = ""; }; - 379BB93017F03F3700829B88 /* CCTweenFunction.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCTweenFunction.cpp; sourceTree = ""; }; - 379BB93117F03F3700829B88 /* CCTweenFunction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCTweenFunction.h; sourceTree = ""; }; - 379BB93217F03F3700829B88 /* CCUtilMath.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCUtilMath.cpp; sourceTree = ""; }; - 379BB93317F03F3700829B88 /* CCUtilMath.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCUtilMath.h; sourceTree = ""; }; - 379BB93517F03F3700829B88 /* CCComAttribute.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCComAttribute.cpp; sourceTree = ""; }; - 379BB93617F03F3700829B88 /* CCComAttribute.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCComAttribute.h; sourceTree = ""; }; - 379BB93717F03F3700829B88 /* CCComAudio.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCComAudio.cpp; sourceTree = ""; }; - 379BB93817F03F3700829B88 /* CCComAudio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCComAudio.h; sourceTree = ""; }; - 379BB93917F03F3700829B88 /* CCComController.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCComController.cpp; sourceTree = ""; }; - 379BB93A17F03F3700829B88 /* CCComController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCComController.h; sourceTree = ""; }; - 379BB93B17F03F3700829B88 /* CCComRender.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCComRender.cpp; sourceTree = ""; }; - 379BB93C17F03F3700829B88 /* CCComRender.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCComRender.h; sourceTree = ""; }; - 379BB93D17F03F3700829B88 /* CCInputDelegate.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCInputDelegate.cpp; sourceTree = ""; }; - 379BB93E17F03F3700829B88 /* CCInputDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCInputDelegate.h; sourceTree = ""; }; - 379BB94417F03F3700829B88 /* UIWidget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UIWidget.cpp; sourceTree = ""; }; - 379BB94517F03F3700829B88 /* UIWidget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UIWidget.h; sourceTree = ""; }; - 379BB94717F03F3700829B88 /* UILayout.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UILayout.cpp; sourceTree = ""; }; - 379BB94817F03F3700829B88 /* UILayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UILayout.h; sourceTree = ""; }; - 379BB94B17F03F3700829B88 /* UILayoutParameter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UILayoutParameter.cpp; sourceTree = ""; }; - 379BB94C17F03F3700829B88 /* UILayoutParameter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UILayoutParameter.h; sourceTree = ""; }; - 379BB94D17F03F3700829B88 /* UILayoutDefine.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UILayoutDefine.cpp; sourceTree = ""; }; - 379BB94E17F03F3700829B88 /* UILayoutDefine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UILayoutDefine.h; sourceTree = ""; }; - 379BB95017F03F3700829B88 /* CocosGUI.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CocosGUI.cpp; sourceTree = ""; }; - 379BB95117F03F3700829B88 /* CocosGUI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CocosGUI.h; sourceTree = ""; }; - 379BB95217F03F3700829B88 /* UIHelper.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UIHelper.cpp; sourceTree = ""; }; - 379BB95317F03F3700829B88 /* UIHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UIHelper.h; sourceTree = ""; }; - 379BB95A17F03F3700829B88 /* CompatibleClasses.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CompatibleClasses.h; sourceTree = ""; }; - 379BB95E17F03F3700829B88 /* UIListView.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UIListView.cpp; sourceTree = ""; }; - 379BB95F17F03F3700829B88 /* UIListView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UIListView.h; sourceTree = ""; }; - 379BB96017F03F3700829B88 /* UIPageView.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UIPageView.cpp; sourceTree = ""; }; - 379BB96117F03F3700829B88 /* UIPageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UIPageView.h; sourceTree = ""; }; - 379BB96217F03F3700829B88 /* UIScrollInterface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UIScrollInterface.h; sourceTree = ""; }; - 379BB96317F03F3700829B88 /* UIScrollView.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UIScrollView.cpp; sourceTree = ""; }; - 379BB96417F03F3700829B88 /* UIScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UIScrollView.h; sourceTree = ""; }; - 379BB96517F03F3700829B88 /* UIButton.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UIButton.cpp; sourceTree = ""; }; - 379BB96617F03F3700829B88 /* UIButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UIButton.h; sourceTree = ""; }; - 379BB96717F03F3700829B88 /* UICheckBox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UICheckBox.cpp; sourceTree = ""; }; - 379BB96817F03F3700829B88 /* UICheckBox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UICheckBox.h; sourceTree = ""; }; - 379BB96917F03F3700829B88 /* UIImageView.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UIImageView.cpp; sourceTree = ""; }; - 379BB96A17F03F3700829B88 /* UIImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UIImageView.h; sourceTree = ""; }; - 379BB96B17F03F3700829B88 /* UILabel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UILabel.cpp; sourceTree = ""; }; - 379BB96C17F03F3700829B88 /* UILabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UILabel.h; sourceTree = ""; }; - 379BB96D17F03F3700829B88 /* UILabelAtlas.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UILabelAtlas.cpp; sourceTree = ""; }; - 379BB96E17F03F3700829B88 /* UILabelAtlas.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UILabelAtlas.h; sourceTree = ""; }; - 379BB96F17F03F3700829B88 /* UILabelBMFont.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UILabelBMFont.cpp; sourceTree = ""; }; - 379BB97017F03F3700829B88 /* UILabelBMFont.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UILabelBMFont.h; sourceTree = ""; }; - 379BB97117F03F3700829B88 /* UILoadingBar.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UILoadingBar.cpp; sourceTree = ""; }; - 379BB97217F03F3700829B88 /* UILoadingBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UILoadingBar.h; sourceTree = ""; }; - 379BB97317F03F3700829B88 /* UISlider.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UISlider.cpp; sourceTree = ""; }; - 379BB97417F03F3700829B88 /* UISlider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UISlider.h; sourceTree = ""; }; - 379BB97717F03F3700829B88 /* UITextField.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UITextField.cpp; sourceTree = ""; }; - 379BB97817F03F3700829B88 /* UITextField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UITextField.h; sourceTree = ""; }; - 379BB97C17F03F3700829B88 /* DictionaryHelper.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = DictionaryHelper.cpp; sourceTree = ""; }; - 379BB97D17F03F3700829B88 /* DictionaryHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DictionaryHelper.h; sourceTree = ""; }; - 379BB99117F03F3700829B88 /* GUIReader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = GUIReader.cpp; sourceTree = ""; }; - 379BB99217F03F3700829B88 /* GUIReader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GUIReader.h; sourceTree = ""; }; - 379BB99317F03F3700829B88 /* SceneReader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SceneReader.cpp; sourceTree = ""; }; - 379BB99417F03F3700829B88 /* SceneReader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SceneReader.h; sourceTree = ""; }; 37C62C0718E156AE00D16FC4 /* ExtensionExport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ExtensionExport.h; sourceTree = ""; }; - 38FA2EA5194EA58000FF2BE4 /* CCActionTimeline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCActionTimeline.cpp; sourceTree = ""; }; - 38FA2EA6194EA58000FF2BE4 /* CCActionTimeline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCActionTimeline.h; sourceTree = ""; }; - 38FA2EA7194EA58000FF2BE4 /* CCActionTimelineCache.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCActionTimelineCache.cpp; sourceTree = ""; }; - 38FA2EA8194EA58000FF2BE4 /* CCActionTimelineCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCActionTimelineCache.h; sourceTree = ""; }; - 38FA2EA9194EA58000FF2BE4 /* CCFrame.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCFrame.cpp; sourceTree = ""; }; - 38FA2EAA194EA58000FF2BE4 /* CCFrame.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCFrame.h; sourceTree = ""; }; - 38FA2EAB194EA58000FF2BE4 /* CCNodeReader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCNodeReader.cpp; sourceTree = ""; }; - 38FA2EAC194EA58000FF2BE4 /* CCNodeReader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCNodeReader.h; sourceTree = ""; }; - 38FA2EAD194EA58000FF2BE4 /* CCTimeLine.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CCTimeLine.cpp; sourceTree = ""; }; - 38FA2EAE194EA58000FF2BE4 /* CCTimeLine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCTimeLine.h; sourceTree = ""; }; - 38FA2EAF194EA58000FF2BE4 /* CCTimelineMacro.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCTimelineMacro.h; sourceTree = ""; }; - 43B91F031949BAF100F7F815 /* CocoLoader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CocoLoader.cpp; sourceTree = ""; }; - 43B91F041949BAF100F7F815 /* CocoLoader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CocoLoader.h; sourceTree = ""; }; - 46513EAF187BFBA200B5ABE1 /* UITouchGroup.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UITouchGroup.cpp; sourceTree = ""; }; - 46513EB0187BFBA200B5ABE1 /* UITouchGroup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UITouchGroup.h; sourceTree = ""; }; 7855E0DF153FEF240059DD9A /* Default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Default.png; sourceTree = SOURCE_ROOT; }; - 8949453A19570B5F00487A09 /* joystick.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = joystick.plist; sourceTree = ""; }; - 8949453B19570B5F00487A09 /* joystick.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = joystick.png; sourceTree = ""; }; - 8949453C19570B5F00487A09 /* main.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = main.plist; sourceTree = ""; }; - 8949453D19570B5F00487A09 /* main.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = main.png; sourceTree = ""; }; - 8949453E19570B5F00487A09 /* map_01.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_01.tmx; sourceTree = ""; }; - 8949453F19570B5F00487A09 /* map_02.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_02.tmx; sourceTree = ""; }; - 8949454019570B5F00487A09 /* map_03.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_03.tmx; sourceTree = ""; }; - 8949454119570B5F00487A09 /* map_menu1_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu1_style1.tmx; sourceTree = ""; }; - 8949454219570B6000487A09 /* map_menu1_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu1_style2.tmx; sourceTree = ""; }; - 8949454319570B6000487A09 /* map_menu1_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu1_style3.tmx; sourceTree = ""; }; - 8949454419570B6000487A09 /* map_menu2_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu2_style1.tmx; sourceTree = ""; }; - 8949454519570B6000487A09 /* map_menu2_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu2_style2.tmx; sourceTree = ""; }; - 8949454619570B6000487A09 /* map_menu2_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu2_style3.tmx; sourceTree = ""; }; - 8949454719570B6000487A09 /* map_menu3_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu3_style1.tmx; sourceTree = ""; }; - 8949454819570B6000487A09 /* map_menu3_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu3_style2.tmx; sourceTree = ""; }; - 8949454919570B6000487A09 /* map_menu3_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu3_style3.tmx; sourceTree = ""; }; - 8949454A19570B6000487A09 /* map_menu4_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu4_style1.tmx; sourceTree = ""; }; - 8949454B19570B6000487A09 /* map_menu4_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu4_style2.tmx; sourceTree = ""; }; - 8949454C19570B6000487A09 /* map_menu4_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu4_style3.tmx; sourceTree = ""; }; - 8949454D19570B6000487A09 /* map_menu5_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu5_style1.tmx; sourceTree = ""; }; - 8949454E19570B6000487A09 /* map_menu5_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu5_style2.tmx; sourceTree = ""; }; - 8949454F19570B6000487A09 /* map_menu5_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu5_style3.tmx; sourceTree = ""; }; - 8949455019570B6000487A09 /* map.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = map.png; sourceTree = ""; }; - 8949455119570B6000487A09 /* monsters.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = monsters.plist; sourceTree = ""; }; - 8949455219570B6000487A09 /* monsters.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = monsters.png; sourceTree = ""; }; - 8949455319570B6000487A09 /* scene_battle_cns.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = scene_battle_cns.plist; sourceTree = ""; }; - 8949455419570B6000487A09 /* scene_loading_cns.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = scene_loading_cns.plist; sourceTree = ""; }; - 8949455519570B6000487A09 /* scene_map_cns.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = scene_map_cns.plist; sourceTree = ""; }; - 8949455619570B6000487A09 /* scene_start_cns.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = scene_start_cns.plist; sourceTree = ""; }; - 8949455719570B6000487A09 /* select_player_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = select_player_style1.tmx; sourceTree = ""; }; - 8949455819570B6000487A09 /* select_player_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = select_player_style2.tmx; sourceTree = ""; }; - 8949455919570B6000487A09 /* select_player_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = select_player_style3.tmx; sourceTree = ""; }; - 8949455A19570B6000487A09 /* shop_list_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = shop_list_style1.tmx; sourceTree = ""; }; - 8949455B19570B6000487A09 /* shop_list_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = shop_list_style2.tmx; sourceTree = ""; }; - 8949455C19570B6000487A09 /* shop_list_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = shop_list_style3.tmx; sourceTree = ""; }; - 8949455D19570B6000487A09 /* shop_menu_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = shop_menu_style1.tmx; sourceTree = ""; }; - 8949455E19570B6000487A09 /* shop_menu_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = shop_menu_style2.tmx; sourceTree = ""; }; - 8949455F19570B6000487A09 /* shop_menu_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = shop_menu_style3.tmx; sourceTree = ""; }; - 8949456019570B6000487A09 /* skill_cure.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = skill_cure.plist; sourceTree = ""; }; - 8949456119570B6000487A09 /* skill_fire.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = skill_fire.plist; sourceTree = ""; }; - 8949456219570B6000487A09 /* start_bg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = start_bg.png; sourceTree = ""; }; - 8949456319570B6000487A09 /* use_item.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = use_item.plist; sourceTree = ""; }; - 8949456419570B6000487A09 /* Window_a_00.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Window_a_00.png; sourceTree = ""; }; - 8949456519570B6000487A09 /* Window_b_00.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Window_b_00.png; sourceTree = ""; }; - 8949456619570B6000487A09 /* Window_c_00.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Window_c_00.png; sourceTree = ""; }; - 8949459419570B8400487A09 /* actor4_0.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor4_0.png; sourceTree = ""; }; - 8949459519570B8400487A09 /* actor4_1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor4_1.png; sourceTree = ""; }; - 8949459619570B8400487A09 /* actor4_2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor4_2.png; sourceTree = ""; }; - 8949459719570B8400487A09 /* actor4_3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor4_3.png; sourceTree = ""; }; - 8949459819570B8400487A09 /* actor4_4.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor4_4.png; sourceTree = ""; }; - 8949459919570B8400487A09 /* actor5_0.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor5_0.png; sourceTree = ""; }; - 8949459A19570B8400487A09 /* actor5_1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor5_1.png; sourceTree = ""; }; - 8949459B19570B8400487A09 /* actor5_2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor5_2.png; sourceTree = ""; }; - 8949459C19570B8400487A09 /* actor5_3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor5_3.png; sourceTree = ""; }; - 8949459D19570B8400487A09 /* actor5_4.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor5_4.png; sourceTree = ""; }; - 8949459E19570B8400487A09 /* actor7_0.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor7_0.png; sourceTree = ""; }; - 8949459F19570B8400487A09 /* actor7_1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor7_1.png; sourceTree = ""; }; - 894945A019570B8400487A09 /* actor7_2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor7_2.png; sourceTree = ""; }; - 894945A119570B8400487A09 /* actor7_3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor7_3.png; sourceTree = ""; }; - 894945A219570B8400487A09 /* actor7_4.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor7_4.png; sourceTree = ""; }; - 894945A319570B8400487A09 /* actor8_0.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor8_0.png; sourceTree = ""; }; - 894945A419570B8400487A09 /* actor8_1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor8_1.png; sourceTree = ""; }; - 894945A519570B8400487A09 /* actor8_2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor8_2.png; sourceTree = ""; }; - 894945A619570B8400487A09 /* actor8_3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor8_3.png; sourceTree = ""; }; - 894945A719570B8400487A09 /* actor8_4.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor8_4.png; sourceTree = ""; }; - 894945A819570B8400487A09 /* actor111.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor111.png; sourceTree = ""; }; - 894945A919570B8400487A09 /* actor113.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor113.png; sourceTree = ""; }; - 894945AA19570B8400487A09 /* actor114.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor114.png; sourceTree = ""; }; - 894945AB19570B8400487A09 /* actor115.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor115.png; sourceTree = ""; }; - 894945AC19570B8400487A09 /* actor117.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor117.png; sourceTree = ""; }; - 894945AD19570B8400487A09 /* actor120.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor120.png; sourceTree = ""; }; - 894945AE19570B8400487A09 /* alert_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = alert_style1.tmx; sourceTree = ""; }; - 894945AF19570B8400487A09 /* alert_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = alert_style2.tmx; sourceTree = ""; }; - 894945B019570B8400487A09 /* alert_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = alert_style3.tmx; sourceTree = ""; }; - 894945B119570B8400487A09 /* attack_damage.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = attack_damage.plist; sourceTree = ""; }; - 894945B219570B8400487A09 /* attack_damage.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = attack_damage.png; sourceTree = ""; }; - 894945B319570B8400487A09 /* attack1.ExportJson */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = attack1.ExportJson; sourceTree = ""; }; - 894945B419570B8400487A09 /* attack2.ExportJson */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = attack2.ExportJson; sourceTree = ""; }; - 894945B519570B8400487A09 /* attack3.ExportJson */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = attack3.ExportJson; sourceTree = ""; }; - 894945B619570B8400487A09 /* attack4.ExportJson */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = attack4.ExportJson; sourceTree = ""; }; - 894945B719570B8400487A09 /* attack10.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = attack10.plist; sourceTree = ""; }; - 894945B819570B8400487A09 /* attack10.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = attack10.png; sourceTree = ""; }; - 894945B919570B8400487A09 /* attack20.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = attack20.plist; sourceTree = ""; }; - 894945BA19570B8400487A09 /* attack20.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = attack20.png; sourceTree = ""; }; - 894945BB19570B8400487A09 /* attack30.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = attack30.plist; sourceTree = ""; }; - 894945BC19570B8400487A09 /* attack30.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = attack30.png; sourceTree = ""; }; - 894945BD19570B8400487A09 /* attack40.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = attack40.plist; sourceTree = ""; }; - 894945BE19570B8400487A09 /* attack40.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = attack40.png; sourceTree = ""; }; - 894945BF19570B8400487A09 /* audio_battle_attack1.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = audio_battle_attack1.wav; sourceTree = ""; }; - 894945C019570B8400487A09 /* audio_battle_attack2.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = audio_battle_attack2.wav; sourceTree = ""; }; - 894945C119570B8400487A09 /* audio_battle_end.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = audio_battle_end.mp3; sourceTree = ""; }; - 894945C219570B8400487A09 /* audio_battle_lose.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = audio_battle_lose.mp3; sourceTree = ""; }; - 894945C319570B8400487A09 /* audio_battle_menu.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = audio_battle_menu.wav; sourceTree = ""; }; - 894945C419570B8400487A09 /* audio_battle_start.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = audio_battle_start.wav; sourceTree = ""; }; - 894945C519570B8400487A09 /* audio_battle.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = audio_battle.mp3; sourceTree = ""; }; - 894945C619570B8400487A09 /* audio_effect_btn.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = audio_effect_btn.wav; sourceTree = ""; }; - 894945C719570B8400487A09 /* audio_inn.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = audio_inn.mp3; sourceTree = ""; }; - 894945C819570B8400487A09 /* audio_map_01.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = audio_map_01.mp3; sourceTree = ""; }; - 894945C919570B8400487A09 /* audio_map_02.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = audio_map_02.mp3; sourceTree = ""; }; - 894945CA19570B8400487A09 /* audio_map_03.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = audio_map_03.mp3; sourceTree = ""; }; - 894945CB19570B8400487A09 /* audio_skill_cure.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = audio_skill_cure.wav; sourceTree = ""; }; - 894945CC19570B8400487A09 /* audio_skill_fire.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = audio_skill_fire.wav; sourceTree = ""; }; - 894945CD19570B8400487A09 /* audio_start_btn.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = audio_start_btn.wav; sourceTree = ""; }; - 894945CE19570B8400487A09 /* audio_start.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = audio_start.mp3; sourceTree = ""; }; - 894945CF19570B8400487A09 /* audio_use_items.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = audio_use_items.wav; sourceTree = ""; }; - 894945D019570B8400487A09 /* battle_battlemenu_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = battle_battlemenu_style1.tmx; sourceTree = ""; }; - 894945D119570B8400487A09 /* battle_battlemenu_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = battle_battlemenu_style2.tmx; sourceTree = ""; }; - 894945D219570B8400487A09 /* battle_battlemenu_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = battle_battlemenu_style3.tmx; sourceTree = ""; }; - 894945D319570B8400487A09 /* battle_bg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = battle_bg.png; sourceTree = ""; }; - 894945D419570B8400487A09 /* battle_menu_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = battle_menu_style1.tmx; sourceTree = ""; }; - 894945D519570B8400487A09 /* battle_menu_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = battle_menu_style2.tmx; sourceTree = ""; }; - 894945D619570B8400487A09 /* battle_menu_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = battle_menu_style3.tmx; sourceTree = ""; }; - 894945D719570B8400487A09 /* battle_msg_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = battle_msg_style1.tmx; sourceTree = ""; }; - 894945D819570B8400487A09 /* battle_msg_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = battle_msg_style2.tmx; sourceTree = ""; }; - 894945D919570B8400487A09 /* battle_msg_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = battle_msg_style3.tmx; sourceTree = ""; }; - 894945DA19570B8400487A09 /* battle_select_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = battle_select_style1.tmx; sourceTree = ""; }; - 894945DB19570B8400487A09 /* battle_select_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = battle_select_style2.tmx; sourceTree = ""; }; - 894945DC19570B8400487A09 /* battle_select_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = battle_select_style3.tmx; sourceTree = ""; }; - 894945DD19570B8400487A09 /* db.sys */ = {isa = PBXFileReference; lastKnownFileType = file; path = db.sys; sourceTree = ""; }; - 894945DE19570B8400487A09 /* dialog_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = dialog_style1.tmx; sourceTree = ""; }; - 894945DF19570B8400487A09 /* dialog_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = dialog_style2.tmx; sourceTree = ""; }; - 894945E019570B8400487A09 /* dialog_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = dialog_style3.tmx; sourceTree = ""; }; - 8949462E19570B8E00487A09 /* fzcyjt.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = fzcyjt.ttf; path = fonts/fzcyjt.ttf; sourceTree = ""; }; - 8949463019570BD700487A09 /* GameCfg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GameCfg.h; sourceTree = ""; }; - 8949463119570BD700487A09 /* OzgCCScrollBgNode.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = OzgCCScrollBgNode.cpp; sourceTree = ""; }; - 8949463219570BD700487A09 /* OzgCCScrollBgNode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OzgCCScrollBgNode.h; sourceTree = ""; }; - 8949463319570BD700487A09 /* OzgCCUtility.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = OzgCCUtility.cpp; sourceTree = ""; }; - 8949463419570BD700487A09 /* OzgCCUtility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OzgCCUtility.h; sourceTree = ""; }; - 8949463519570BD700487A09 /* OzgFileUtility.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = OzgFileUtility.cpp; sourceTree = ""; }; - 8949463619570BD700487A09 /* OzgFileUtility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OzgFileUtility.h; sourceTree = ""; }; - 8949463719570BD700487A09 /* OzgJoystickLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = OzgJoystickLayer.cpp; sourceTree = ""; }; - 8949463819570BD700487A09 /* OzgJoystickLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OzgJoystickLayer.h; sourceTree = ""; }; - 8949463919570BD700487A09 /* RPGBaseSceneLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RPGBaseSceneLayer.cpp; sourceTree = ""; }; - 8949463A19570BD700487A09 /* RPGBaseSceneLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RPGBaseSceneLayer.h; sourceTree = ""; }; - 8949463B19570BD700487A09 /* RPGBattleMenu.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RPGBattleMenu.cpp; sourceTree = ""; }; - 8949463C19570BD700487A09 /* RPGBattleMenu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RPGBattleMenu.h; sourceTree = ""; }; - 8949463D19570BD700487A09 /* RPGBattleMonsterSprite.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RPGBattleMonsterSprite.cpp; sourceTree = ""; }; - 8949463E19570BD700487A09 /* RPGBattleMonsterSprite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RPGBattleMonsterSprite.h; sourceTree = ""; }; - 8949463F19570BD700487A09 /* RPGBattlePlayerSprite.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RPGBattlePlayerSprite.cpp; sourceTree = ""; }; - 8949464019570BD700487A09 /* RPGBattlePlayerSprite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RPGBattlePlayerSprite.h; sourceTree = ""; }; - 8949464119570BD700487A09 /* RPGBattleSceneLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RPGBattleSceneLayer.cpp; sourceTree = ""; }; - 8949464219570BD700487A09 /* RPGBattleSceneLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RPGBattleSceneLayer.h; sourceTree = ""; }; - 8949464319570BD700487A09 /* RPGComputingResults.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RPGComputingResults.cpp; sourceTree = ""; }; - 8949464419570BD700487A09 /* RPGComputingResults.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RPGComputingResults.h; sourceTree = ""; }; - 8949464519570BD700487A09 /* RPGData.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RPGData.cpp; sourceTree = ""; }; - 8949464619570BD700487A09 /* RPGData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RPGData.h; sourceTree = ""; }; - 8949464719570BD700487A09 /* RPGDialogLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RPGDialogLayer.cpp; sourceTree = ""; }; - 8949464819570BD700487A09 /* RPGDialogLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RPGDialogLayer.h; sourceTree = ""; }; - 8949464919570BD700487A09 /* RPGLoadingSceneLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RPGLoadingSceneLayer.cpp; sourceTree = ""; }; - 8949464A19570BD700487A09 /* RPGLoadingSceneLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RPGLoadingSceneLayer.h; sourceTree = ""; }; - 8949464B19570BD700487A09 /* RPGMapChoicePlayerMenuLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RPGMapChoicePlayerMenuLayer.cpp; sourceTree = ""; }; - 8949464C19570BD700487A09 /* RPGMapChoicePlayerMenuLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RPGMapChoicePlayerMenuLayer.h; sourceTree = ""; }; - 8949464D19570BD700487A09 /* RPGMapDialogLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RPGMapDialogLayer.cpp; sourceTree = ""; }; - 8949464E19570BD700487A09 /* RPGMapDialogLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RPGMapDialogLayer.h; sourceTree = ""; }; - 8949464F19570BD700487A09 /* RPGMapEquipMenuLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RPGMapEquipMenuLayer.cpp; sourceTree = ""; }; - 8949465019570BD700487A09 /* RPGMapEquipMenuLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RPGMapEquipMenuLayer.h; sourceTree = ""; }; - 8949465119570BD700487A09 /* RPGMapItemsMenuLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RPGMapItemsMenuLayer.cpp; sourceTree = ""; }; - 8949465219570BD700487A09 /* RPGMapItemsMenuLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RPGMapItemsMenuLayer.h; sourceTree = ""; }; - 8949465319570BD700487A09 /* RPGMapMenuLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RPGMapMenuLayer.cpp; sourceTree = ""; }; - 8949465419570BD700487A09 /* RPGMapMenuLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RPGMapMenuLayer.h; sourceTree = ""; }; - 8949465519570BD700487A09 /* RPGMapNPCRoleSprite.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RPGMapNPCRoleSprite.cpp; sourceTree = ""; }; - 8949465619570BD700487A09 /* RPGMapNPCRoleSprite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RPGMapNPCRoleSprite.h; sourceTree = ""; }; - 8949465719570BD700487A09 /* RPGMapRoleSprite.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RPGMapRoleSprite.cpp; sourceTree = ""; }; - 8949465819570BD700487A09 /* RPGMapRoleSprite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RPGMapRoleSprite.h; sourceTree = ""; }; - 8949465919570BD700487A09 /* RPGMapSceneLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RPGMapSceneLayer.cpp; sourceTree = ""; }; - 8949465A19570BD700487A09 /* RPGMapSceneLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RPGMapSceneLayer.h; sourceTree = ""; }; - 8949465B19570BD700487A09 /* RPGMapSkillMenuLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RPGMapSkillMenuLayer.cpp; sourceTree = ""; }; - 8949465C19570BD700487A09 /* RPGMapSkillMenuLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RPGMapSkillMenuLayer.h; sourceTree = ""; }; - 8949465D19570BD700487A09 /* RPGMapStatusMenuLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RPGMapStatusMenuLayer.cpp; sourceTree = ""; }; - 8949465E19570BD700487A09 /* RPGMapStatusMenuLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RPGMapStatusMenuLayer.h; sourceTree = ""; }; - 8949465F19570BD700487A09 /* RPGResultsLogic.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RPGResultsLogic.cpp; sourceTree = ""; }; - 8949466019570BD700487A09 /* RPGResultsLogic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RPGResultsLogic.h; sourceTree = ""; }; - 8949466119570BD700487A09 /* RPGStartSceneLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RPGStartSceneLayer.cpp; sourceTree = ""; }; - 8949466219570BD700487A09 /* RPGStartSceneLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RPGStartSceneLayer.h; sourceTree = ""; }; - 89D3649819570F490050A8E7 /* CppSQLite3.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CppSQLite3.cpp; sourceTree = ""; }; - 89D3649919570F490050A8E7 /* CppSQLite3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CppSQLite3.h; sourceTree = ""; }; - 89D3649D19570F490050A8E7 /* Array.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Array.h; sourceTree = ""; }; - 89D3649E19570F490050A8E7 /* Convert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Convert.h; sourceTree = ""; }; - 89D3649F19570F490050A8E7 /* Escaper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Escaper.h; sourceTree = ""; }; - 89D364A019570F490050A8E7 /* Grammar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Grammar.h; sourceTree = ""; }; - 89D364A119570F490050A8E7 /* IndentCanceller.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IndentCanceller.h; sourceTree = ""; }; - 89D364A219570F490050A8E7 /* Indenter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Indenter.h; sourceTree = ""; }; - 89D364A319570F490050A8E7 /* Object.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Object.h; sourceTree = ""; }; - 89D364A419570F490050A8E7 /* OutputFilter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OutputFilter.h; sourceTree = ""; }; - 89D364A519570F490050A8E7 /* SolidusEscaper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SolidusEscaper.h; sourceTree = ""; }; - 89D364A619570F490050A8E7 /* Value.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Value.h; sourceTree = ""; }; - 89D364A719570F490050A8E7 /* JsonBox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JsonBox.h; sourceTree = ""; }; - 89D364A819570F490050A8E7 /* sn.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = sn.txt; sourceTree = ""; }; - 89D364AA19570F490050A8E7 /* Array.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Array.cpp; sourceTree = ""; }; - 89D364AB19570F490050A8E7 /* Convert.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Convert.cpp; sourceTree = ""; }; - 89D364AC19570F490050A8E7 /* Escaper.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Escaper.cpp; sourceTree = ""; }; - 89D364AD19570F490050A8E7 /* IndentCanceller.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = IndentCanceller.cpp; sourceTree = ""; }; - 89D364AE19570F490050A8E7 /* Indenter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Indenter.cpp; sourceTree = ""; }; - 89D364AF19570F490050A8E7 /* Object.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Object.cpp; sourceTree = ""; }; - 89D364B019570F490050A8E7 /* SolidusEscaper.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SolidusEscaper.cpp; sourceTree = ""; }; - 89D364B119570F490050A8E7 /* Value.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Value.cpp; sourceTree = ""; }; - 89D364BC1957102D0050A8E7 /* libsqlite3.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libsqlite3.dylib; path = usr/lib/libsqlite3.dylib; sourceTree = SDKROOT; }; + 8974E2721A4303D500D343A3 /* joystick.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = joystick.plist; sourceTree = ""; }; + 8974E2731A4303D500D343A3 /* joystick.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = joystick.png; sourceTree = ""; }; + 8974E2741A4303D500D343A3 /* main.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = main.plist; sourceTree = ""; }; + 8974E2751A4303D500D343A3 /* main.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = main.png; sourceTree = ""; }; + 8974E2761A4303D500D343A3 /* map_01.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_01.tmx; sourceTree = ""; }; + 8974E2771A4303D500D343A3 /* map_02.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_02.tmx; sourceTree = ""; }; + 8974E2781A4303D500D343A3 /* map_03.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_03.tmx; sourceTree = ""; }; + 8974E2791A4303D500D343A3 /* map_menu1_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu1_style1.tmx; sourceTree = ""; }; + 8974E27A1A4303D500D343A3 /* map_menu1_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu1_style2.tmx; sourceTree = ""; }; + 8974E27B1A4303D500D343A3 /* map_menu1_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu1_style3.tmx; sourceTree = ""; }; + 8974E27C1A4303D500D343A3 /* map_menu2_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu2_style1.tmx; sourceTree = ""; }; + 8974E27D1A4303D500D343A3 /* map_menu2_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu2_style2.tmx; sourceTree = ""; }; + 8974E27E1A4303D500D343A3 /* map_menu2_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu2_style3.tmx; sourceTree = ""; }; + 8974E27F1A4303D500D343A3 /* map_menu3_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu3_style1.tmx; sourceTree = ""; }; + 8974E2801A4303D500D343A3 /* map_menu3_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu3_style2.tmx; sourceTree = ""; }; + 8974E2811A4303D500D343A3 /* map_menu3_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu3_style3.tmx; sourceTree = ""; }; + 8974E2821A4303D500D343A3 /* map_menu4_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu4_style1.tmx; sourceTree = ""; }; + 8974E2831A4303D500D343A3 /* map_menu4_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu4_style2.tmx; sourceTree = ""; }; + 8974E2841A4303D500D343A3 /* map_menu4_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu4_style3.tmx; sourceTree = ""; }; + 8974E2851A4303D500D343A3 /* map_menu5_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu5_style1.tmx; sourceTree = ""; }; + 8974E2861A4303D500D343A3 /* map_menu5_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu5_style2.tmx; sourceTree = ""; }; + 8974E2871A4303D500D343A3 /* map_menu5_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu5_style3.tmx; sourceTree = ""; }; + 8974E2881A4303D500D343A3 /* map.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = map.png; sourceTree = ""; }; + 8974E2891A4303D500D343A3 /* monsters.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = monsters.plist; sourceTree = ""; }; + 8974E28A1A4303D500D343A3 /* monsters.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = monsters.png; sourceTree = ""; }; + 8974E28B1A4303D500D343A3 /* scene_battle_cns.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = scene_battle_cns.plist; sourceTree = ""; }; + 8974E28C1A4303D500D343A3 /* scene_loading_cns.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = scene_loading_cns.plist; sourceTree = ""; }; + 8974E28D1A4303D500D343A3 /* scene_map_cns.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = scene_map_cns.plist; sourceTree = ""; }; + 8974E28E1A4303D500D343A3 /* scene_start_cns.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = scene_start_cns.plist; sourceTree = ""; }; + 8974E28F1A4303D500D343A3 /* select_player_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = select_player_style1.tmx; sourceTree = ""; }; + 8974E2901A4303D500D343A3 /* select_player_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = select_player_style2.tmx; sourceTree = ""; }; + 8974E2911A4303D500D343A3 /* select_player_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = select_player_style3.tmx; sourceTree = ""; }; + 8974E2921A4303D500D343A3 /* shop_list_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = shop_list_style1.tmx; sourceTree = ""; }; + 8974E2931A4303D500D343A3 /* shop_list_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = shop_list_style2.tmx; sourceTree = ""; }; + 8974E2941A4303D500D343A3 /* shop_list_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = shop_list_style3.tmx; sourceTree = ""; }; + 8974E2951A4303D500D343A3 /* shop_menu_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = shop_menu_style1.tmx; sourceTree = ""; }; + 8974E2961A4303D500D343A3 /* shop_menu_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = shop_menu_style2.tmx; sourceTree = ""; }; + 8974E2971A4303D500D343A3 /* shop_menu_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = shop_menu_style3.tmx; sourceTree = ""; }; + 8974E2981A4303D500D343A3 /* skill_cure.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = skill_cure.plist; sourceTree = ""; }; + 8974E2991A4303D500D343A3 /* skill_fire.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = skill_fire.plist; sourceTree = ""; }; + 8974E29A1A4303D500D343A3 /* start_bg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = start_bg.png; sourceTree = ""; }; + 8974E29B1A4303D500D343A3 /* use_item.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = use_item.plist; sourceTree = ""; }; + 8974E29C1A4303D500D343A3 /* Window_a_00.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Window_a_00.png; sourceTree = ""; }; + 8974E29D1A4303D500D343A3 /* Window_b_00.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Window_b_00.png; sourceTree = ""; }; + 8974E29E1A4303D500D343A3 /* Window_c_00.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Window_c_00.png; sourceTree = ""; }; + 8974E2CC1A4303E800D343A3 /* actor4_0.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor4_0.png; sourceTree = ""; }; + 8974E2CD1A4303E800D343A3 /* actor4_1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor4_1.png; sourceTree = ""; }; + 8974E2CE1A4303E800D343A3 /* actor4_2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor4_2.png; sourceTree = ""; }; + 8974E2CF1A4303E800D343A3 /* actor4_3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor4_3.png; sourceTree = ""; }; + 8974E2D01A4303E800D343A3 /* actor4_4.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor4_4.png; sourceTree = ""; }; + 8974E2D11A4303E800D343A3 /* actor5_0.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor5_0.png; sourceTree = ""; }; + 8974E2D21A4303E800D343A3 /* actor5_1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor5_1.png; sourceTree = ""; }; + 8974E2D31A4303E800D343A3 /* actor5_2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor5_2.png; sourceTree = ""; }; + 8974E2D41A4303E800D343A3 /* actor5_3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor5_3.png; sourceTree = ""; }; + 8974E2D51A4303E800D343A3 /* actor5_4.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor5_4.png; sourceTree = ""; }; + 8974E2D61A4303E800D343A3 /* actor7_0.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor7_0.png; sourceTree = ""; }; + 8974E2D71A4303E800D343A3 /* actor7_1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor7_1.png; sourceTree = ""; }; + 8974E2D81A4303E800D343A3 /* actor7_2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor7_2.png; sourceTree = ""; }; + 8974E2D91A4303E800D343A3 /* actor7_3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor7_3.png; sourceTree = ""; }; + 8974E2DA1A4303E800D343A3 /* actor7_4.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor7_4.png; sourceTree = ""; }; + 8974E2DB1A4303E800D343A3 /* actor8_0.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor8_0.png; sourceTree = ""; }; + 8974E2DC1A4303E800D343A3 /* actor8_1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor8_1.png; sourceTree = ""; }; + 8974E2DD1A4303E800D343A3 /* actor8_2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor8_2.png; sourceTree = ""; }; + 8974E2DE1A4303E800D343A3 /* actor8_3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor8_3.png; sourceTree = ""; }; + 8974E2DF1A4303E800D343A3 /* actor8_4.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor8_4.png; sourceTree = ""; }; + 8974E2E01A4303E800D343A3 /* actor111.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor111.png; sourceTree = ""; }; + 8974E2E11A4303E800D343A3 /* actor113.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor113.png; sourceTree = ""; }; + 8974E2E21A4303E800D343A3 /* actor114.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor114.png; sourceTree = ""; }; + 8974E2E31A4303E800D343A3 /* actor115.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor115.png; sourceTree = ""; }; + 8974E2E41A4303E800D343A3 /* actor117.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor117.png; sourceTree = ""; }; + 8974E2E51A4303E800D343A3 /* actor120.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor120.png; sourceTree = ""; }; + 8974E2E61A4303E800D343A3 /* alert_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = alert_style1.tmx; sourceTree = ""; }; + 8974E2E71A4303E800D343A3 /* alert_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = alert_style2.tmx; sourceTree = ""; }; + 8974E2E81A4303E800D343A3 /* alert_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = alert_style3.tmx; sourceTree = ""; }; + 8974E2E91A4303E800D343A3 /* attack_damage.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = attack_damage.plist; sourceTree = ""; }; + 8974E2EA1A4303E800D343A3 /* attack_damage.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = attack_damage.png; sourceTree = ""; }; + 8974E2EB1A4303E800D343A3 /* attack1.ExportJson */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = attack1.ExportJson; sourceTree = ""; }; + 8974E2EC1A4303E800D343A3 /* attack2.ExportJson */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = attack2.ExportJson; sourceTree = ""; }; + 8974E2ED1A4303E800D343A3 /* attack3.ExportJson */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = attack3.ExportJson; sourceTree = ""; }; + 8974E2EE1A4303E800D343A3 /* attack4.ExportJson */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = attack4.ExportJson; sourceTree = ""; }; + 8974E2EF1A4303E800D343A3 /* attack10.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = attack10.plist; sourceTree = ""; }; + 8974E2F01A4303E800D343A3 /* attack10.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = attack10.png; sourceTree = ""; }; + 8974E2F11A4303E800D343A3 /* attack20.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = attack20.plist; sourceTree = ""; }; + 8974E2F21A4303E800D343A3 /* attack20.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = attack20.png; sourceTree = ""; }; + 8974E2F31A4303E800D343A3 /* attack30.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = attack30.plist; sourceTree = ""; }; + 8974E2F41A4303E800D343A3 /* attack30.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = attack30.png; sourceTree = ""; }; + 8974E2F51A4303E800D343A3 /* attack40.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = attack40.plist; sourceTree = ""; }; + 8974E2F61A4303E800D343A3 /* attack40.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = attack40.png; sourceTree = ""; }; + 8974E2F71A4303E800D343A3 /* audio_battle_attack1.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = audio_battle_attack1.wav; sourceTree = ""; }; + 8974E2F81A4303E800D343A3 /* audio_battle_attack2.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = audio_battle_attack2.wav; sourceTree = ""; }; + 8974E2F91A4303E800D343A3 /* audio_battle_end.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = audio_battle_end.mp3; sourceTree = ""; }; + 8974E2FA1A4303E800D343A3 /* audio_battle_lose.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = audio_battle_lose.mp3; sourceTree = ""; }; + 8974E2FB1A4303E800D343A3 /* audio_battle_menu.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = audio_battle_menu.wav; sourceTree = ""; }; + 8974E2FC1A4303E800D343A3 /* audio_battle_start.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = audio_battle_start.wav; sourceTree = ""; }; + 8974E2FD1A4303E800D343A3 /* audio_battle.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = audio_battle.mp3; sourceTree = ""; }; + 8974E2FE1A4303E800D343A3 /* audio_effect_btn.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = audio_effect_btn.wav; sourceTree = ""; }; + 8974E2FF1A4303E800D343A3 /* audio_inn.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = audio_inn.mp3; sourceTree = ""; }; + 8974E3001A4303E800D343A3 /* audio_map_01.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = audio_map_01.mp3; sourceTree = ""; }; + 8974E3011A4303E800D343A3 /* audio_map_02.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = audio_map_02.mp3; sourceTree = ""; }; + 8974E3021A4303E800D343A3 /* audio_map_03.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = audio_map_03.mp3; sourceTree = ""; }; + 8974E3031A4303E800D343A3 /* audio_skill_cure.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = audio_skill_cure.wav; sourceTree = ""; }; + 8974E3041A4303E800D343A3 /* audio_skill_fire.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = audio_skill_fire.wav; sourceTree = ""; }; + 8974E3051A4303E800D343A3 /* audio_start_btn.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = audio_start_btn.wav; sourceTree = ""; }; + 8974E3061A4303E800D343A3 /* audio_start.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = audio_start.mp3; sourceTree = ""; }; + 8974E3071A4303E800D343A3 /* audio_use_items.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = audio_use_items.wav; sourceTree = ""; }; + 8974E3081A4303E800D343A3 /* battle_battlemenu_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = battle_battlemenu_style1.tmx; sourceTree = ""; }; + 8974E3091A4303E800D343A3 /* battle_battlemenu_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = battle_battlemenu_style2.tmx; sourceTree = ""; }; + 8974E30A1A4303E800D343A3 /* battle_battlemenu_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = battle_battlemenu_style3.tmx; sourceTree = ""; }; + 8974E30B1A4303E800D343A3 /* battle_bg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = battle_bg.png; sourceTree = ""; }; + 8974E30C1A4303E800D343A3 /* battle_menu_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = battle_menu_style1.tmx; sourceTree = ""; }; + 8974E30D1A4303E800D343A3 /* battle_menu_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = battle_menu_style2.tmx; sourceTree = ""; }; + 8974E30E1A4303E800D343A3 /* battle_menu_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = battle_menu_style3.tmx; sourceTree = ""; }; + 8974E30F1A4303E800D343A3 /* battle_msg_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = battle_msg_style1.tmx; sourceTree = ""; }; + 8974E3101A4303E800D343A3 /* battle_msg_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = battle_msg_style2.tmx; sourceTree = ""; }; + 8974E3111A4303E800D343A3 /* battle_msg_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = battle_msg_style3.tmx; sourceTree = ""; }; + 8974E3121A4303E900D343A3 /* battle_select_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = battle_select_style1.tmx; sourceTree = ""; }; + 8974E3131A4303E900D343A3 /* battle_select_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = battle_select_style2.tmx; sourceTree = ""; }; + 8974E3141A4303E900D343A3 /* battle_select_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = battle_select_style3.tmx; sourceTree = ""; }; + 8974E3151A4303E900D343A3 /* db.sys */ = {isa = PBXFileReference; lastKnownFileType = file; path = db.sys; sourceTree = ""; }; + 8974E3161A4303E900D343A3 /* dialog_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = dialog_style1.tmx; sourceTree = ""; }; + 8974E3171A4303E900D343A3 /* dialog_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = dialog_style2.tmx; sourceTree = ""; }; + 8974E3181A4303E900D343A3 /* dialog_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = dialog_style3.tmx; sourceTree = ""; }; + 8974E3661A43043600D343A3 /* GameCfg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GameCfg.h; sourceTree = ""; }; + 8974E3671A43043600D343A3 /* OzgCCScrollBgNode.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = OzgCCScrollBgNode.cpp; sourceTree = ""; }; + 8974E3681A43043600D343A3 /* OzgCCScrollBgNode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OzgCCScrollBgNode.h; sourceTree = ""; }; + 8974E3691A43043600D343A3 /* OzgCCUtility.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = OzgCCUtility.cpp; sourceTree = ""; }; + 8974E36A1A43043600D343A3 /* OzgCCUtility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OzgCCUtility.h; sourceTree = ""; }; + 8974E36B1A43043600D343A3 /* OzgFileUtility.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = OzgFileUtility.cpp; sourceTree = ""; }; + 8974E36C1A43043600D343A3 /* OzgFileUtility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OzgFileUtility.h; sourceTree = ""; }; + 8974E36D1A43043600D343A3 /* OzgJoystickLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = OzgJoystickLayer.cpp; sourceTree = ""; }; + 8974E36E1A43043600D343A3 /* OzgJoystickLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OzgJoystickLayer.h; sourceTree = ""; }; + 8974E36F1A43043600D343A3 /* RPGBaseSceneLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RPGBaseSceneLayer.cpp; sourceTree = ""; }; + 8974E3701A43043600D343A3 /* RPGBaseSceneLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RPGBaseSceneLayer.h; sourceTree = ""; }; + 8974E3711A43043600D343A3 /* RPGBattleMenu.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RPGBattleMenu.cpp; sourceTree = ""; }; + 8974E3721A43043600D343A3 /* RPGBattleMenu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RPGBattleMenu.h; sourceTree = ""; }; + 8974E3731A43043600D343A3 /* RPGBattleMonsterSprite.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RPGBattleMonsterSprite.cpp; sourceTree = ""; }; + 8974E3741A43043600D343A3 /* RPGBattleMonsterSprite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RPGBattleMonsterSprite.h; sourceTree = ""; }; + 8974E3751A43043600D343A3 /* RPGBattlePlayerSprite.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RPGBattlePlayerSprite.cpp; sourceTree = ""; }; + 8974E3761A43043600D343A3 /* RPGBattlePlayerSprite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RPGBattlePlayerSprite.h; sourceTree = ""; }; + 8974E3771A43043600D343A3 /* RPGBattleSceneLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RPGBattleSceneLayer.cpp; sourceTree = ""; }; + 8974E3781A43043600D343A3 /* RPGBattleSceneLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RPGBattleSceneLayer.h; sourceTree = ""; }; + 8974E3791A43043600D343A3 /* RPGComputingResults.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RPGComputingResults.cpp; sourceTree = ""; }; + 8974E37A1A43043600D343A3 /* RPGComputingResults.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RPGComputingResults.h; sourceTree = ""; }; + 8974E37B1A43043600D343A3 /* RPGData.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RPGData.cpp; sourceTree = ""; }; + 8974E37C1A43043600D343A3 /* RPGData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RPGData.h; sourceTree = ""; }; + 8974E37D1A43043600D343A3 /* RPGDialogLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RPGDialogLayer.cpp; sourceTree = ""; }; + 8974E37E1A43043600D343A3 /* RPGDialogLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RPGDialogLayer.h; sourceTree = ""; }; + 8974E37F1A43043600D343A3 /* RPGLoadingSceneLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RPGLoadingSceneLayer.cpp; sourceTree = ""; }; + 8974E3801A43043600D343A3 /* RPGLoadingSceneLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RPGLoadingSceneLayer.h; sourceTree = ""; }; + 8974E3811A43043600D343A3 /* RPGMapChoicePlayerMenuLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RPGMapChoicePlayerMenuLayer.cpp; sourceTree = ""; }; + 8974E3821A43043600D343A3 /* RPGMapChoicePlayerMenuLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RPGMapChoicePlayerMenuLayer.h; sourceTree = ""; }; + 8974E3831A43043600D343A3 /* RPGMapDialogLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RPGMapDialogLayer.cpp; sourceTree = ""; }; + 8974E3841A43043600D343A3 /* RPGMapDialogLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RPGMapDialogLayer.h; sourceTree = ""; }; + 8974E3851A43043600D343A3 /* RPGMapEquipMenuLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RPGMapEquipMenuLayer.cpp; sourceTree = ""; }; + 8974E3861A43043600D343A3 /* RPGMapEquipMenuLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RPGMapEquipMenuLayer.h; sourceTree = ""; }; + 8974E3871A43043600D343A3 /* RPGMapItemsMenuLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RPGMapItemsMenuLayer.cpp; sourceTree = ""; }; + 8974E3881A43043600D343A3 /* RPGMapItemsMenuLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RPGMapItemsMenuLayer.h; sourceTree = ""; }; + 8974E3891A43043600D343A3 /* RPGMapMenuLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RPGMapMenuLayer.cpp; sourceTree = ""; }; + 8974E38A1A43043600D343A3 /* RPGMapMenuLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RPGMapMenuLayer.h; sourceTree = ""; }; + 8974E38B1A43043600D343A3 /* RPGMapNPCRoleSprite.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RPGMapNPCRoleSprite.cpp; sourceTree = ""; }; + 8974E38C1A43043600D343A3 /* RPGMapNPCRoleSprite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RPGMapNPCRoleSprite.h; sourceTree = ""; }; + 8974E38D1A43043600D343A3 /* RPGMapRoleSprite.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RPGMapRoleSprite.cpp; sourceTree = ""; }; + 8974E38E1A43043600D343A3 /* RPGMapRoleSprite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RPGMapRoleSprite.h; sourceTree = ""; }; + 8974E38F1A43043600D343A3 /* RPGMapSceneLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RPGMapSceneLayer.cpp; sourceTree = ""; }; + 8974E3901A43043600D343A3 /* RPGMapSceneLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RPGMapSceneLayer.h; sourceTree = ""; }; + 8974E3911A43043600D343A3 /* RPGMapSkillMenuLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RPGMapSkillMenuLayer.cpp; sourceTree = ""; }; + 8974E3921A43043600D343A3 /* RPGMapSkillMenuLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RPGMapSkillMenuLayer.h; sourceTree = ""; }; + 8974E3931A43043600D343A3 /* RPGMapStatusMenuLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RPGMapStatusMenuLayer.cpp; sourceTree = ""; }; + 8974E3941A43043600D343A3 /* RPGMapStatusMenuLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RPGMapStatusMenuLayer.h; sourceTree = ""; }; + 8974E3951A43043600D343A3 /* RPGResultsLogic.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RPGResultsLogic.cpp; sourceTree = ""; }; + 8974E3961A43043600D343A3 /* RPGResultsLogic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RPGResultsLogic.h; sourceTree = ""; }; + 8974E3971A43043600D343A3 /* RPGStartSceneLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RPGStartSceneLayer.cpp; sourceTree = ""; }; + 8974E3981A43043600D343A3 /* RPGStartSceneLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RPGStartSceneLayer.h; sourceTree = ""; }; + 8974E3B31A43045000D343A3 /* CppSQLite3.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CppSQLite3.cpp; path = ../libs/CppSQLite3.cpp; sourceTree = ""; }; + 8974E3B41A43045000D343A3 /* CppSQLite3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CppSQLite3.h; path = ../libs/CppSQLite3.h; sourceTree = ""; }; + 8974E3B71A4304A300D343A3 /* Array.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Array.cpp; path = ../libs/JsonBox/src/Array.cpp; sourceTree = ""; }; + 8974E3B81A4304A300D343A3 /* Convert.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Convert.cpp; path = ../libs/JsonBox/src/Convert.cpp; sourceTree = ""; }; + 8974E3B91A4304A300D343A3 /* Escaper.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Escaper.cpp; path = ../libs/JsonBox/src/Escaper.cpp; sourceTree = ""; }; + 8974E3BA1A4304A300D343A3 /* IndentCanceller.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = IndentCanceller.cpp; path = ../libs/JsonBox/src/IndentCanceller.cpp; sourceTree = ""; }; + 8974E3BB1A4304A300D343A3 /* Indenter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Indenter.cpp; path = ../libs/JsonBox/src/Indenter.cpp; sourceTree = ""; }; + 8974E3BC1A4304A300D343A3 /* Object.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Object.cpp; path = ../libs/JsonBox/src/Object.cpp; sourceTree = ""; }; + 8974E3BD1A4304A300D343A3 /* SolidusEscaper.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = SolidusEscaper.cpp; path = ../libs/JsonBox/src/SolidusEscaper.cpp; sourceTree = ""; }; + 8974E3BE1A4304A300D343A3 /* Value.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Value.cpp; path = ../libs/JsonBox/src/Value.cpp; sourceTree = ""; }; + 8974E3C71A4305F000D343A3 /* libsqlite3.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libsqlite3.dylib; path = usr/lib/libsqlite3.dylib; sourceTree = SDKROOT; }; + 8974E3C91A43064900D343A3 /* fzcyjt.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = fzcyjt.ttf; path = fonts/fzcyjt.ttf; sourceTree = ""; }; BF170DB012928DE900B8313A /* OpenGLES.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = System/Library/Frameworks/OpenGLES.framework; sourceTree = SDKROOT; }; BF170DB212928DE900B8313A /* libxml2.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libxml2.dylib; path = usr/lib/libxml2.dylib; sourceTree = SDKROOT; }; BF170DB412928DE900B8313A /* libz.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libz.dylib; path = usr/lib/libz.dylib; sourceTree = SDKROOT; }; @@ -1147,7 +1138,7 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 89D364BD1957102D0050A8E7 /* libsqlite3.dylib in Frameworks */, + 8974E3C81A4305F000D343A3 /* libsqlite3.dylib in Frameworks */, 15A3DA6A1682F886002FB0C5 /* libcocos2dx.a in Frameworks */, 1ACB3244164770DE00914215 /* libcurl.a in Frameworks */, 1D60589F0D05DD5A006BFB54 /* Foundation.framework in Frameworks */, @@ -1452,7 +1443,7 @@ 15A3D9B31682F826002FB0C5 /* extensions */ = { isa = PBXGroup; children = ( - 37CA271817D87D7600A649D0 /* CocoStudio */, + 15C0B47B196D412E007F909D /* CocoStudio */, 1A9CE8211765A12C000E3062 /* AssetsManager */, 15A3D9B51682F826002FB0C5 /* CCBReader */, 15A3D9EA1682F826002FB0C5 /* cocos-ext.h */, @@ -1660,57 +1651,57 @@ 15AA9C4015B7EC450033D6C2 /* Classes */ = { isa = PBXGroup; children = ( - 8949463019570BD700487A09 /* GameCfg.h */, - 8949463119570BD700487A09 /* OzgCCScrollBgNode.cpp */, - 8949463219570BD700487A09 /* OzgCCScrollBgNode.h */, - 8949463319570BD700487A09 /* OzgCCUtility.cpp */, - 8949463419570BD700487A09 /* OzgCCUtility.h */, - 8949463519570BD700487A09 /* OzgFileUtility.cpp */, - 8949463619570BD700487A09 /* OzgFileUtility.h */, - 8949463719570BD700487A09 /* OzgJoystickLayer.cpp */, - 8949463819570BD700487A09 /* OzgJoystickLayer.h */, - 8949463919570BD700487A09 /* RPGBaseSceneLayer.cpp */, - 8949463A19570BD700487A09 /* RPGBaseSceneLayer.h */, - 8949463B19570BD700487A09 /* RPGBattleMenu.cpp */, - 8949463C19570BD700487A09 /* RPGBattleMenu.h */, - 8949463D19570BD700487A09 /* RPGBattleMonsterSprite.cpp */, - 8949463E19570BD700487A09 /* RPGBattleMonsterSprite.h */, - 8949463F19570BD700487A09 /* RPGBattlePlayerSprite.cpp */, - 8949464019570BD700487A09 /* RPGBattlePlayerSprite.h */, - 8949464119570BD700487A09 /* RPGBattleSceneLayer.cpp */, - 8949464219570BD700487A09 /* RPGBattleSceneLayer.h */, - 8949464319570BD700487A09 /* RPGComputingResults.cpp */, - 8949464419570BD700487A09 /* RPGComputingResults.h */, - 8949464519570BD700487A09 /* RPGData.cpp */, - 8949464619570BD700487A09 /* RPGData.h */, - 8949464719570BD700487A09 /* RPGDialogLayer.cpp */, - 8949464819570BD700487A09 /* RPGDialogLayer.h */, - 8949464919570BD700487A09 /* RPGLoadingSceneLayer.cpp */, - 8949464A19570BD700487A09 /* RPGLoadingSceneLayer.h */, - 8949464B19570BD700487A09 /* RPGMapChoicePlayerMenuLayer.cpp */, - 8949464C19570BD700487A09 /* RPGMapChoicePlayerMenuLayer.h */, - 8949464D19570BD700487A09 /* RPGMapDialogLayer.cpp */, - 8949464E19570BD700487A09 /* RPGMapDialogLayer.h */, - 8949464F19570BD700487A09 /* RPGMapEquipMenuLayer.cpp */, - 8949465019570BD700487A09 /* RPGMapEquipMenuLayer.h */, - 8949465119570BD700487A09 /* RPGMapItemsMenuLayer.cpp */, - 8949465219570BD700487A09 /* RPGMapItemsMenuLayer.h */, - 8949465319570BD700487A09 /* RPGMapMenuLayer.cpp */, - 8949465419570BD700487A09 /* RPGMapMenuLayer.h */, - 8949465519570BD700487A09 /* RPGMapNPCRoleSprite.cpp */, - 8949465619570BD700487A09 /* RPGMapNPCRoleSprite.h */, - 8949465719570BD700487A09 /* RPGMapRoleSprite.cpp */, - 8949465819570BD700487A09 /* RPGMapRoleSprite.h */, - 8949465919570BD700487A09 /* RPGMapSceneLayer.cpp */, - 8949465A19570BD700487A09 /* RPGMapSceneLayer.h */, - 8949465B19570BD700487A09 /* RPGMapSkillMenuLayer.cpp */, - 8949465C19570BD700487A09 /* RPGMapSkillMenuLayer.h */, - 8949465D19570BD700487A09 /* RPGMapStatusMenuLayer.cpp */, - 8949465E19570BD700487A09 /* RPGMapStatusMenuLayer.h */, - 8949465F19570BD700487A09 /* RPGResultsLogic.cpp */, - 8949466019570BD700487A09 /* RPGResultsLogic.h */, - 8949466119570BD700487A09 /* RPGStartSceneLayer.cpp */, - 8949466219570BD700487A09 /* RPGStartSceneLayer.h */, + 8974E3661A43043600D343A3 /* GameCfg.h */, + 8974E3671A43043600D343A3 /* OzgCCScrollBgNode.cpp */, + 8974E3681A43043600D343A3 /* OzgCCScrollBgNode.h */, + 8974E3691A43043600D343A3 /* OzgCCUtility.cpp */, + 8974E36A1A43043600D343A3 /* OzgCCUtility.h */, + 8974E36B1A43043600D343A3 /* OzgFileUtility.cpp */, + 8974E36C1A43043600D343A3 /* OzgFileUtility.h */, + 8974E36D1A43043600D343A3 /* OzgJoystickLayer.cpp */, + 8974E36E1A43043600D343A3 /* OzgJoystickLayer.h */, + 8974E36F1A43043600D343A3 /* RPGBaseSceneLayer.cpp */, + 8974E3701A43043600D343A3 /* RPGBaseSceneLayer.h */, + 8974E3711A43043600D343A3 /* RPGBattleMenu.cpp */, + 8974E3721A43043600D343A3 /* RPGBattleMenu.h */, + 8974E3731A43043600D343A3 /* RPGBattleMonsterSprite.cpp */, + 8974E3741A43043600D343A3 /* RPGBattleMonsterSprite.h */, + 8974E3751A43043600D343A3 /* RPGBattlePlayerSprite.cpp */, + 8974E3761A43043600D343A3 /* RPGBattlePlayerSprite.h */, + 8974E3771A43043600D343A3 /* RPGBattleSceneLayer.cpp */, + 8974E3781A43043600D343A3 /* RPGBattleSceneLayer.h */, + 8974E3791A43043600D343A3 /* RPGComputingResults.cpp */, + 8974E37A1A43043600D343A3 /* RPGComputingResults.h */, + 8974E37B1A43043600D343A3 /* RPGData.cpp */, + 8974E37C1A43043600D343A3 /* RPGData.h */, + 8974E37D1A43043600D343A3 /* RPGDialogLayer.cpp */, + 8974E37E1A43043600D343A3 /* RPGDialogLayer.h */, + 8974E37F1A43043600D343A3 /* RPGLoadingSceneLayer.cpp */, + 8974E3801A43043600D343A3 /* RPGLoadingSceneLayer.h */, + 8974E3811A43043600D343A3 /* RPGMapChoicePlayerMenuLayer.cpp */, + 8974E3821A43043600D343A3 /* RPGMapChoicePlayerMenuLayer.h */, + 8974E3831A43043600D343A3 /* RPGMapDialogLayer.cpp */, + 8974E3841A43043600D343A3 /* RPGMapDialogLayer.h */, + 8974E3851A43043600D343A3 /* RPGMapEquipMenuLayer.cpp */, + 8974E3861A43043600D343A3 /* RPGMapEquipMenuLayer.h */, + 8974E3871A43043600D343A3 /* RPGMapItemsMenuLayer.cpp */, + 8974E3881A43043600D343A3 /* RPGMapItemsMenuLayer.h */, + 8974E3891A43043600D343A3 /* RPGMapMenuLayer.cpp */, + 8974E38A1A43043600D343A3 /* RPGMapMenuLayer.h */, + 8974E38B1A43043600D343A3 /* RPGMapNPCRoleSprite.cpp */, + 8974E38C1A43043600D343A3 /* RPGMapNPCRoleSprite.h */, + 8974E38D1A43043600D343A3 /* RPGMapRoleSprite.cpp */, + 8974E38E1A43043600D343A3 /* RPGMapRoleSprite.h */, + 8974E38F1A43043600D343A3 /* RPGMapSceneLayer.cpp */, + 8974E3901A43043600D343A3 /* RPGMapSceneLayer.h */, + 8974E3911A43043600D343A3 /* RPGMapSkillMenuLayer.cpp */, + 8974E3921A43043600D343A3 /* RPGMapSkillMenuLayer.h */, + 8974E3931A43043600D343A3 /* RPGMapStatusMenuLayer.cpp */, + 8974E3941A43043600D343A3 /* RPGMapStatusMenuLayer.h */, + 8974E3951A43043600D343A3 /* RPGResultsLogic.cpp */, + 8974E3961A43043600D343A3 /* RPGResultsLogic.h */, + 8974E3971A43043600D343A3 /* RPGStartSceneLayer.cpp */, + 8974E3981A43043600D343A3 /* RPGStartSceneLayer.h */, 1AFAF8B316D35DE700DB1158 /* AppDelegate.cpp */, 1AFAF8B416D35DE700DB1158 /* AppDelegate.h */, ); @@ -1718,6 +1709,472 @@ path = ../Classes; sourceTree = ""; }; + 15C0B47B196D412E007F909D /* CocoStudio */ = { + isa = PBXGroup; + children = ( + 15C0B47C196D412E007F909D /* Action */, + 15C0B489196D412F007F909D /* ActionTimeline */, + 15C0B495196D412F007F909D /* Armature */, + 15C0B4C3196D412F007F909D /* Components */, + 15C0B4CF196D412F007F909D /* GUI */, + 15C0B501196D412F007F909D /* Json */, + 15C0B512196D412F007F909D /* Reader */, + 15C0B542196D412F007F909D /* Trigger */, + ); + path = CocoStudio; + sourceTree = ""; + }; + 15C0B47C196D412E007F909D /* Action */ = { + isa = PBXGroup; + children = ( + 15C0B47D196D412E007F909D /* CCActionEaseEx.cpp */, + 15C0B47E196D412E007F909D /* CCActionEaseEx.h */, + 15C0B47F196D412E007F909D /* CCActionFrame.cpp */, + 15C0B480196D412E007F909D /* CCActionFrame.h */, + 15C0B481196D412E007F909D /* CCActionFrameEasing.cpp */, + 15C0B482196D412E007F909D /* CCActionFrameEasing.h */, + 15C0B483196D412E007F909D /* CCActionManager.cpp */, + 15C0B484196D412E007F909D /* CCActionManager.h */, + 15C0B485196D412E007F909D /* CCActionNode.cpp */, + 15C0B486196D412F007F909D /* CCActionNode.h */, + 15C0B487196D412F007F909D /* CCActionObject.cpp */, + 15C0B488196D412F007F909D /* CCActionObject.h */, + ); + path = Action; + sourceTree = ""; + }; + 15C0B489196D412F007F909D /* ActionTimeline */ = { + isa = PBXGroup; + children = ( + 15C0B48A196D412F007F909D /* CCActionTimeline.cpp */, + 15C0B48B196D412F007F909D /* CCActionTimeline.h */, + 15C0B48C196D412F007F909D /* CCActionTimelineCache.cpp */, + 15C0B48D196D412F007F909D /* CCActionTimelineCache.h */, + 15C0B48E196D412F007F909D /* CCFrame.cpp */, + 15C0B48F196D412F007F909D /* CCFrame.h */, + 15C0B490196D412F007F909D /* CCNodeReader.cpp */, + 15C0B491196D412F007F909D /* CCNodeReader.h */, + 15C0B492196D412F007F909D /* CCTimeLine.cpp */, + 15C0B493196D412F007F909D /* CCTimeLine.h */, + 15C0B494196D412F007F909D /* CCTimelineMacro.h */, + ); + path = ActionTimeline; + sourceTree = ""; + }; + 15C0B495196D412F007F909D /* Armature */ = { + isa = PBXGroup; + children = ( + 15C0B496196D412F007F909D /* animation */, + 15C0B49D196D412F007F909D /* CCArmature.cpp */, + 15C0B49E196D412F007F909D /* CCArmature.h */, + 15C0B49F196D412F007F909D /* CCBone.cpp */, + 15C0B4A0196D412F007F909D /* CCBone.h */, + 15C0B4A1196D412F007F909D /* datas */, + 15C0B4A4196D412F007F909D /* display */, + 15C0B4AF196D412F007F909D /* external_tool */, + 15C0B4B1196D412F007F909D /* physics */, + 15C0B4B4196D412F007F909D /* utils */, + ); + path = Armature; + sourceTree = ""; + }; + 15C0B496196D412F007F909D /* animation */ = { + isa = PBXGroup; + children = ( + 15C0B497196D412F007F909D /* CCArmatureAnimation.cpp */, + 15C0B498196D412F007F909D /* CCArmatureAnimation.h */, + 15C0B499196D412F007F909D /* CCProcessBase.cpp */, + 15C0B49A196D412F007F909D /* CCProcessBase.h */, + 15C0B49B196D412F007F909D /* CCTween.cpp */, + 15C0B49C196D412F007F909D /* CCTween.h */, + ); + path = animation; + sourceTree = ""; + }; + 15C0B4A1196D412F007F909D /* datas */ = { + isa = PBXGroup; + children = ( + 15C0B4A2196D412F007F909D /* CCDatas.cpp */, + 15C0B4A3196D412F007F909D /* CCDatas.h */, + ); + path = datas; + sourceTree = ""; + }; + 15C0B4A4196D412F007F909D /* display */ = { + isa = PBXGroup; + children = ( + 15C0B4A5196D412F007F909D /* CCBatchNode.cpp */, + 15C0B4A6196D412F007F909D /* CCBatchNode.h */, + 15C0B4A7196D412F007F909D /* CCDecorativeDisplay.cpp */, + 15C0B4A8196D412F007F909D /* CCDecorativeDisplay.h */, + 15C0B4A9196D412F007F909D /* CCDisplayFactory.cpp */, + 15C0B4AA196D412F007F909D /* CCDisplayFactory.h */, + 15C0B4AB196D412F007F909D /* CCDisplayManager.cpp */, + 15C0B4AC196D412F007F909D /* CCDisplayManager.h */, + 15C0B4AD196D412F007F909D /* CCSkin.cpp */, + 15C0B4AE196D412F007F909D /* CCSkin.h */, + ); + path = display; + sourceTree = ""; + }; + 15C0B4AF196D412F007F909D /* external_tool */ = { + isa = PBXGroup; + children = ( + 15C0B4B0196D412F007F909D /* sigslot.h */, + ); + path = external_tool; + sourceTree = ""; + }; + 15C0B4B1196D412F007F909D /* physics */ = { + isa = PBXGroup; + children = ( + 15C0B4B2196D412F007F909D /* CCColliderDetector.cpp */, + 15C0B4B3196D412F007F909D /* CCColliderDetector.h */, + ); + path = physics; + sourceTree = ""; + }; + 15C0B4B4196D412F007F909D /* utils */ = { + isa = PBXGroup; + children = ( + 15C0B4B5196D412F007F909D /* CCArmatureDataManager.cpp */, + 15C0B4B6196D412F007F909D /* CCArmatureDataManager.h */, + 15C0B4B7196D412F007F909D /* CCArmatureDefine.cpp */, + 15C0B4B8196D412F007F909D /* CCArmatureDefine.h */, + 15C0B4B9196D412F007F909D /* CCDataReaderHelper.cpp */, + 15C0B4BA196D412F007F909D /* CCDataReaderHelper.h */, + 15C0B4BB196D412F007F909D /* CCSpriteFrameCacheHelper.cpp */, + 15C0B4BC196D412F007F909D /* CCSpriteFrameCacheHelper.h */, + 15C0B4BD196D412F007F909D /* CCTransformHelp.cpp */, + 15C0B4BE196D412F007F909D /* CCTransformHelp.h */, + 15C0B4BF196D412F007F909D /* CCTweenFunction.cpp */, + 15C0B4C0196D412F007F909D /* CCTweenFunction.h */, + 15C0B4C1196D412F007F909D /* CCUtilMath.cpp */, + 15C0B4C2196D412F007F909D /* CCUtilMath.h */, + ); + path = utils; + sourceTree = ""; + }; + 15C0B4C3196D412F007F909D /* Components */ = { + isa = PBXGroup; + children = ( + 15C0B4C4196D412F007F909D /* CCComAttribute.cpp */, + 15C0B4C5196D412F007F909D /* CCComAttribute.h */, + 15C0B4C6196D412F007F909D /* CCComAudio.cpp */, + 15C0B4C7196D412F007F909D /* CCComAudio.h */, + 15C0B4C8196D412F007F909D /* CCComBase.h */, + 15C0B4C9196D412F007F909D /* CCComController.cpp */, + 15C0B4CA196D412F007F909D /* CCComController.h */, + 15C0B4CB196D412F007F909D /* CCComRender.cpp */, + 15C0B4CC196D412F007F909D /* CCComRender.h */, + 15C0B4CD196D412F007F909D /* CCInputDelegate.cpp */, + 15C0B4CE196D412F007F909D /* CCInputDelegate.h */, + ); + path = Components; + sourceTree = ""; + }; + 15C0B4CF196D412F007F909D /* GUI */ = { + isa = PBXGroup; + children = ( + 15C0B4D0196D412F007F909D /* BaseClasses */, + 15C0B4D3196D412F007F909D /* Layouts */, + 15C0B4DA196D412F007F909D /* System */, + 15C0B4E2196D412F007F909D /* UIWidgets */, + ); + path = GUI; + sourceTree = ""; + }; + 15C0B4D0196D412F007F909D /* BaseClasses */ = { + isa = PBXGroup; + children = ( + 15C0B4D1196D412F007F909D /* UIWidget.cpp */, + 15C0B4D2196D412F007F909D /* UIWidget.h */, + ); + path = BaseClasses; + sourceTree = ""; + }; + 15C0B4D3196D412F007F909D /* Layouts */ = { + isa = PBXGroup; + children = ( + 15C0B4D4196D412F007F909D /* UILayout.cpp */, + 15C0B4D5196D412F007F909D /* UILayout.h */, + 15C0B4D6196D412F007F909D /* UILayoutDefine.cpp */, + 15C0B4D7196D412F007F909D /* UILayoutDefine.h */, + 15C0B4D8196D412F007F909D /* UILayoutParameter.cpp */, + 15C0B4D9196D412F007F909D /* UILayoutParameter.h */, + ); + path = Layouts; + sourceTree = ""; + }; + 15C0B4DA196D412F007F909D /* System */ = { + isa = PBXGroup; + children = ( + 15C0B4DB196D412F007F909D /* CocosGUI.cpp */, + 15C0B4DC196D412F007F909D /* CocosGUI.h */, + 15C0B4DD196D412F007F909D /* GUIDefine.h */, + 15C0B4DE196D412F007F909D /* UIHelper.cpp */, + 15C0B4DF196D412F007F909D /* UIHelper.h */, + 15C0B4E0196D412F007F909D /* UITouchGroup.cpp */, + 15C0B4E1196D412F007F909D /* UITouchGroup.h */, + ); + path = System; + sourceTree = ""; + }; + 15C0B4E2196D412F007F909D /* UIWidgets */ = { + isa = PBXGroup; + children = ( + 15C0B4E3196D412F007F909D /* Compatible */, + 15C0B4E5196D412F007F909D /* ScrollWidget */, + 15C0B4ED196D412F007F909D /* UIButton.cpp */, + 15C0B4EE196D412F007F909D /* UIButton.h */, + 15C0B4EF196D412F007F909D /* UICheckBox.cpp */, + 15C0B4F0196D412F007F909D /* UICheckBox.h */, + 15C0B4F1196D412F007F909D /* UIImageView.cpp */, + 15C0B4F2196D412F007F909D /* UIImageView.h */, + 15C0B4F3196D412F007F909D /* UILabel.cpp */, + 15C0B4F4196D412F007F909D /* UILabel.h */, + 15C0B4F5196D412F007F909D /* UILabelAtlas.cpp */, + 15C0B4F6196D412F007F909D /* UILabelAtlas.h */, + 15C0B4F7196D412F007F909D /* UILabelBMFont.cpp */, + 15C0B4F8196D412F007F909D /* UILabelBMFont.h */, + 15C0B4F9196D412F007F909D /* UILoadingBar.cpp */, + 15C0B4FA196D412F007F909D /* UILoadingBar.h */, + 15C0B4FB196D412F007F909D /* UIRichText.cpp */, + 15C0B4FC196D412F007F909D /* UIRichText.h */, + 15C0B4FD196D412F007F909D /* UISlider.cpp */, + 15C0B4FE196D412F007F909D /* UISlider.h */, + 15C0B4FF196D412F007F909D /* UITextField.cpp */, + 15C0B500196D412F007F909D /* UITextField.h */, + ); + path = UIWidgets; + sourceTree = ""; + }; + 15C0B4E3196D412F007F909D /* Compatible */ = { + isa = PBXGroup; + children = ( + 15C0B4E4196D412F007F909D /* CompatibleClasses.h */, + ); + path = Compatible; + sourceTree = ""; + }; + 15C0B4E5196D412F007F909D /* ScrollWidget */ = { + isa = PBXGroup; + children = ( + 15C0B4E6196D412F007F909D /* UIListView.cpp */, + 15C0B4E7196D412F007F909D /* UIListView.h */, + 15C0B4E8196D412F007F909D /* UIPageView.cpp */, + 15C0B4E9196D412F007F909D /* UIPageView.h */, + 15C0B4EA196D412F007F909D /* UIScrollInterface.h */, + 15C0B4EB196D412F007F909D /* UIScrollView.cpp */, + 15C0B4EC196D412F007F909D /* UIScrollView.h */, + ); + path = ScrollWidget; + sourceTree = ""; + }; + 15C0B501196D412F007F909D /* Json */ = { + isa = PBXGroup; + children = ( + 15C0B502196D412F007F909D /* CocoLoader.cpp */, + 15C0B503196D412F007F909D /* CocoLoader.h */, + 15C0B504196D412F007F909D /* DictionaryHelper.cpp */, + 15C0B505196D412F007F909D /* DictionaryHelper.h */, + 15C0B506196D412F007F909D /* rapidjson */, + ); + path = Json; + sourceTree = ""; + }; + 15C0B506196D412F007F909D /* rapidjson */ = { + isa = PBXGroup; + children = ( + 15C0B507196D412F007F909D /* document.h */, + 15C0B508196D412F007F909D /* filestream.h */, + 15C0B509196D412F007F909D /* internal */, + 15C0B50D196D412F007F909D /* prettywriter.h */, + 15C0B50E196D412F007F909D /* rapidjson.h */, + 15C0B50F196D412F007F909D /* reader.h */, + 15C0B510196D412F007F909D /* stringbuffer.h */, + 15C0B511196D412F007F909D /* writer.h */, + ); + path = rapidjson; + sourceTree = ""; + }; + 15C0B509196D412F007F909D /* internal */ = { + isa = PBXGroup; + children = ( + 15C0B50A196D412F007F909D /* pow10.h */, + 15C0B50B196D412F007F909D /* stack.h */, + 15C0B50C196D412F007F909D /* strfunc.h */, + ); + path = internal; + sourceTree = ""; + }; + 15C0B512196D412F007F909D /* Reader */ = { + isa = PBXGroup; + children = ( + 15C0B513196D412F007F909D /* GUIReader.cpp */, + 15C0B514196D412F007F909D /* GUIReader.h */, + 15C0B515196D412F007F909D /* SceneReader.cpp */, + 15C0B516196D412F007F909D /* SceneReader.h */, + 15C0B517196D412F007F909D /* WidgetReader */, + ); + path = Reader; + sourceTree = ""; + }; + 15C0B517196D412F007F909D /* WidgetReader */ = { + isa = PBXGroup; + children = ( + 15C0B518196D412F007F909D /* ButtonReader */, + 15C0B51B196D412F007F909D /* CheckBoxReader */, + 15C0B51E196D412F007F909D /* ImageViewReader */, + 15C0B521196D412F007F909D /* LabelAtlasReader */, + 15C0B524196D412F007F909D /* LabelBMFontReader */, + 15C0B527196D412F007F909D /* LabelReader */, + 15C0B52A196D412F007F909D /* LayoutReader */, + 15C0B52D196D412F007F909D /* ListViewReader */, + 15C0B530196D412F007F909D /* LoadingBarReader */, + 15C0B533196D412F007F909D /* PageViewReader */, + 15C0B536196D412F007F909D /* ScrollViewReader */, + 15C0B539196D412F007F909D /* SliderReader */, + 15C0B53C196D412F007F909D /* TextFieldReader */, + 15C0B53F196D412F007F909D /* WidgetReader.cpp */, + 15C0B540196D412F007F909D /* WidgetReader.h */, + 15C0B541196D412F007F909D /* WidgetReaderProtocol.h */, + ); + path = WidgetReader; + sourceTree = ""; + }; + 15C0B518196D412F007F909D /* ButtonReader */ = { + isa = PBXGroup; + children = ( + 15C0B519196D412F007F909D /* ButtonReader.cpp */, + 15C0B51A196D412F007F909D /* ButtonReader.h */, + ); + path = ButtonReader; + sourceTree = ""; + }; + 15C0B51B196D412F007F909D /* CheckBoxReader */ = { + isa = PBXGroup; + children = ( + 15C0B51C196D412F007F909D /* CheckBoxReader.cpp */, + 15C0B51D196D412F007F909D /* CheckBoxReader.h */, + ); + path = CheckBoxReader; + sourceTree = ""; + }; + 15C0B51E196D412F007F909D /* ImageViewReader */ = { + isa = PBXGroup; + children = ( + 15C0B51F196D412F007F909D /* ImageViewReader.cpp */, + 15C0B520196D412F007F909D /* ImageViewReader.h */, + ); + path = ImageViewReader; + sourceTree = ""; + }; + 15C0B521196D412F007F909D /* LabelAtlasReader */ = { + isa = PBXGroup; + children = ( + 15C0B522196D412F007F909D /* LabelAtlasReader.cpp */, + 15C0B523196D412F007F909D /* LabelAtlasReader.h */, + ); + path = LabelAtlasReader; + sourceTree = ""; + }; + 15C0B524196D412F007F909D /* LabelBMFontReader */ = { + isa = PBXGroup; + children = ( + 15C0B525196D412F007F909D /* LabelBMFontReader.cpp */, + 15C0B526196D412F007F909D /* LabelBMFontReader.h */, + ); + path = LabelBMFontReader; + sourceTree = ""; + }; + 15C0B527196D412F007F909D /* LabelReader */ = { + isa = PBXGroup; + children = ( + 15C0B528196D412F007F909D /* LabelReader.cpp */, + 15C0B529196D412F007F909D /* LabelReader.h */, + ); + path = LabelReader; + sourceTree = ""; + }; + 15C0B52A196D412F007F909D /* LayoutReader */ = { + isa = PBXGroup; + children = ( + 15C0B52B196D412F007F909D /* LayoutReader.cpp */, + 15C0B52C196D412F007F909D /* LayoutReader.h */, + ); + path = LayoutReader; + sourceTree = ""; + }; + 15C0B52D196D412F007F909D /* ListViewReader */ = { + isa = PBXGroup; + children = ( + 15C0B52E196D412F007F909D /* ListViewReader.cpp */, + 15C0B52F196D412F007F909D /* ListViewReader.h */, + ); + path = ListViewReader; + sourceTree = ""; + }; + 15C0B530196D412F007F909D /* LoadingBarReader */ = { + isa = PBXGroup; + children = ( + 15C0B531196D412F007F909D /* LoadingBarReader.cpp */, + 15C0B532196D412F007F909D /* LoadingBarReader.h */, + ); + path = LoadingBarReader; + sourceTree = ""; + }; + 15C0B533196D412F007F909D /* PageViewReader */ = { + isa = PBXGroup; + children = ( + 15C0B534196D412F007F909D /* PageViewReader.cpp */, + 15C0B535196D412F007F909D /* PageViewReader.h */, + ); + path = PageViewReader; + sourceTree = ""; + }; + 15C0B536196D412F007F909D /* ScrollViewReader */ = { + isa = PBXGroup; + children = ( + 15C0B537196D412F007F909D /* ScrollViewReader.cpp */, + 15C0B538196D412F007F909D /* ScrollViewReader.h */, + ); + path = ScrollViewReader; + sourceTree = ""; + }; + 15C0B539196D412F007F909D /* SliderReader */ = { + isa = PBXGroup; + children = ( + 15C0B53A196D412F007F909D /* SliderReader.cpp */, + 15C0B53B196D412F007F909D /* SliderReader.h */, + ); + path = SliderReader; + sourceTree = ""; + }; + 15C0B53C196D412F007F909D /* TextFieldReader */ = { + isa = PBXGroup; + children = ( + 15C0B53D196D412F007F909D /* TextFieldReader.cpp */, + 15C0B53E196D412F007F909D /* TextFieldReader.h */, + ); + path = TextFieldReader; + sourceTree = ""; + }; + 15C0B542196D412F007F909D /* Trigger */ = { + isa = PBXGroup; + children = ( + 15C0B543196D412F007F909D /* ObjectFactory.cpp */, + 15C0B544196D412F007F909D /* ObjectFactory.h */, + 15C0B545196D412F007F909D /* TriggerBase.cpp */, + 15C0B546196D412F007F909D /* TriggerBase.h */, + 15C0B547196D412F007F909D /* TriggerMng.cpp */, + 15C0B548196D412F007F909D /* TriggerMng.h */, + 15C0B549196D412F007F909D /* TriggerObj.cpp */, + 15C0B54A196D412F007F909D /* TriggerObj.h */, + ); + path = Trigger; + sourceTree = ""; + }; 19C28FACFE9D520D11CA2CBB /* Products */ = { isa = PBXGroup; children = ( @@ -1819,150 +2276,10 @@ path = lib; sourceTree = ""; }; - 298B298F18D0668400C1920F /* WidgetReader */ = { - isa = PBXGroup; - children = ( - 298B299018D0668400C1920F /* ButtonReader */, - 298B299318D0668400C1920F /* CheckBoxReader */, - 298B299618D0668400C1920F /* ImageViewReader */, - 298B299918D0668400C1920F /* LabelAtlasReader */, - 298B299C18D0668400C1920F /* LabelBMFontReader */, - 298B299F18D0668400C1920F /* LabelReader */, - 298B29A218D0668400C1920F /* LayoutReader */, - 298B29A518D0668400C1920F /* ListViewReader */, - 298B29A818D0668400C1920F /* LoadingBarReader */, - 298B29AB18D0668400C1920F /* PageViewReader */, - 298B29AE18D0668400C1920F /* ScrollViewReader */, - 298B29B118D0668400C1920F /* SliderReader */, - 298B29B418D0668400C1920F /* TextFieldReader */, - 298B29B718D0668400C1920F /* WidgetReader.cpp */, - 298B29B818D0668400C1920F /* WidgetReader.h */, - 298B29B918D0668400C1920F /* WidgetReaderProtocol.h */, - ); - path = WidgetReader; - sourceTree = ""; - }; - 298B299018D0668400C1920F /* ButtonReader */ = { - isa = PBXGroup; - children = ( - 298B299118D0668400C1920F /* ButtonReader.cpp */, - 298B299218D0668400C1920F /* ButtonReader.h */, - ); - path = ButtonReader; - sourceTree = ""; - }; - 298B299318D0668400C1920F /* CheckBoxReader */ = { - isa = PBXGroup; - children = ( - 298B299418D0668400C1920F /* CheckBoxReader.cpp */, - 298B299518D0668400C1920F /* CheckBoxReader.h */, - ); - path = CheckBoxReader; - sourceTree = ""; - }; - 298B299618D0668400C1920F /* ImageViewReader */ = { - isa = PBXGroup; - children = ( - 298B299718D0668400C1920F /* ImageViewReader.cpp */, - 298B299818D0668400C1920F /* ImageViewReader.h */, - ); - path = ImageViewReader; - sourceTree = ""; - }; - 298B299918D0668400C1920F /* LabelAtlasReader */ = { - isa = PBXGroup; - children = ( - 298B299A18D0668400C1920F /* LabelAtlasReader.cpp */, - 298B299B18D0668400C1920F /* LabelAtlasReader.h */, - ); - path = LabelAtlasReader; - sourceTree = ""; - }; - 298B299C18D0668400C1920F /* LabelBMFontReader */ = { - isa = PBXGroup; - children = ( - 298B299D18D0668400C1920F /* LabelBMFontReader.cpp */, - 298B299E18D0668400C1920F /* LabelBMFontReader.h */, - ); - path = LabelBMFontReader; - sourceTree = ""; - }; - 298B299F18D0668400C1920F /* LabelReader */ = { - isa = PBXGroup; - children = ( - 298B29A018D0668400C1920F /* LabelReader.cpp */, - 298B29A118D0668400C1920F /* LabelReader.h */, - ); - path = LabelReader; - sourceTree = ""; - }; - 298B29A218D0668400C1920F /* LayoutReader */ = { - isa = PBXGroup; - children = ( - 298B29A318D0668400C1920F /* LayoutReader.cpp */, - 298B29A418D0668400C1920F /* LayoutReader.h */, - ); - path = LayoutReader; - sourceTree = ""; - }; - 298B29A518D0668400C1920F /* ListViewReader */ = { - isa = PBXGroup; - children = ( - 298B29A618D0668400C1920F /* ListViewReader.cpp */, - 298B29A718D0668400C1920F /* ListViewReader.h */, - ); - path = ListViewReader; - sourceTree = ""; - }; - 298B29A818D0668400C1920F /* LoadingBarReader */ = { - isa = PBXGroup; - children = ( - 298B29A918D0668400C1920F /* LoadingBarReader.cpp */, - 298B29AA18D0668400C1920F /* LoadingBarReader.h */, - ); - path = LoadingBarReader; - sourceTree = ""; - }; - 298B29AB18D0668400C1920F /* PageViewReader */ = { - isa = PBXGroup; - children = ( - 298B29AC18D0668400C1920F /* PageViewReader.cpp */, - 298B29AD18D0668400C1920F /* PageViewReader.h */, - ); - path = PageViewReader; - sourceTree = ""; - }; - 298B29AE18D0668400C1920F /* ScrollViewReader */ = { - isa = PBXGroup; - children = ( - 298B29AF18D0668400C1920F /* ScrollViewReader.cpp */, - 298B29B018D0668400C1920F /* ScrollViewReader.h */, - ); - path = ScrollViewReader; - sourceTree = ""; - }; - 298B29B118D0668400C1920F /* SliderReader */ = { - isa = PBXGroup; - children = ( - 298B29B218D0668400C1920F /* SliderReader.cpp */, - 298B29B318D0668400C1920F /* SliderReader.h */, - ); - path = SliderReader; - sourceTree = ""; - }; - 298B29B418D0668400C1920F /* TextFieldReader */ = { - isa = PBXGroup; - children = ( - 298B29B518D0668400C1920F /* TextFieldReader.cpp */, - 298B29B618D0668400C1920F /* TextFieldReader.h */, - ); - path = TextFieldReader; - sourceTree = ""; - }; 29B97314FDCFA39411CA2CEA /* CustomTemplate */ = { isa = PBXGroup; children = ( - 89D3649719570F490050A8E7 /* libs */, + 8974E3B21A43043E00D343A3 /* libs */, 15A3D87E1682F7B3002FB0C5 /* cocos2dx.xcodeproj */, 15A3D8871682F7D5002FB0C5 /* Box2D */, 15A3D93A1682F7F9002FB0C5 /* chipmunk */, @@ -1981,7 +2298,7 @@ 29B97323FDCFA39411CA2CEA /* Frameworks */ = { isa = PBXGroup; children = ( - 89D364BC1957102D0050A8E7 /* libsqlite3.dylib */, + 8974E3C71A4305F000D343A3 /* libsqlite3.dylib */, 1ACB3243164770DE00914215 /* libcurl.a */, BF170DB212928DE900B8313A /* libxml2.dylib */, BF170DB412928DE900B8313A /* libz.dylib */, @@ -1997,463 +2314,132 @@ name = Frameworks; sourceTree = ""; }; - 375BD4BA1868411B0024609E /* Trigger */ = { - isa = PBXGroup; - children = ( - 375BD4BB1868411B0024609E /* ObjectFactory.cpp */, - 375BD4BC1868411B0024609E /* ObjectFactory.h */, - 375BD4BD1868411B0024609E /* TriggerBase.cpp */, - 375BD4BE1868411B0024609E /* TriggerBase.h */, - 375BD4BF1868411B0024609E /* TriggerMng.cpp */, - 375BD4C01868411B0024609E /* TriggerMng.h */, - 375BD4C11868411B0024609E /* TriggerObj.cpp */, - 375BD4C21868411B0024609E /* TriggerObj.h */, - ); - path = Trigger; - sourceTree = ""; - }; - 375BD4C7186841280024609E /* rapidjson */ = { - isa = PBXGroup; - children = ( - 375BD4C8186841280024609E /* document.h */, - 375BD4C9186841280024609E /* filestream.h */, - 375BD4CA186841280024609E /* internal */, - 375BD4CE186841280024609E /* prettywriter.h */, - 375BD4CF186841280024609E /* rapidjson.h */, - 375BD4D0186841280024609E /* reader.h */, - 375BD4D1186841280024609E /* stringbuffer.h */, - 375BD4D2186841280024609E /* writer.h */, - ); - path = rapidjson; - sourceTree = ""; - }; - 375BD4CA186841280024609E /* internal */ = { - isa = PBXGroup; - children = ( - 375BD4CB186841280024609E /* pow10.h */, - 375BD4CC186841280024609E /* stack.h */, - 375BD4CD186841280024609E /* strfunc.h */, - ); - path = internal; - sourceTree = ""; - }; - 375BD5011868454E0024609E /* Action */ = { - isa = PBXGroup; - children = ( - 375BD5021868454E0024609E /* CCActionEaseEx.cpp */, - 375BD5031868454E0024609E /* CCActionEaseEx.h */, - 375BD5041868454E0024609E /* CCActionFrame.cpp */, - 375BD5051868454E0024609E /* CCActionFrame.h */, - 375BD5061868454E0024609E /* CCActionFrameEasing.cpp */, - 375BD5071868454E0024609E /* CCActionFrameEasing.h */, - 375BD5081868454E0024609E /* CCActionManager.cpp */, - 375BD5091868454E0024609E /* CCActionManager.h */, - 375BD50A1868454E0024609E /* CCActionNode.cpp */, - 375BD50B1868454E0024609E /* CCActionNode.h */, - 375BD50C1868454E0024609E /* CCActionObject.cpp */, - 375BD50D1868454E0024609E /* CCActionObject.h */, - ); - path = Action; - sourceTree = ""; - }; - 379BB90617F03F3700829B88 /* Armature */ = { - isa = PBXGroup; - children = ( - 379BB90717F03F3700829B88 /* animation */, - 379BB90E17F03F3700829B88 /* CCArmature.cpp */, - 379BB90F17F03F3700829B88 /* CCArmature.h */, - 379BB91017F03F3700829B88 /* CCBone.cpp */, - 379BB91117F03F3700829B88 /* CCBone.h */, - 379BB91217F03F3700829B88 /* datas */, - 379BB91517F03F3700829B88 /* display */, - 379BB92017F03F3700829B88 /* external_tool */, - 379BB92217F03F3700829B88 /* physics */, - 379BB92517F03F3700829B88 /* utils */, - ); - path = Armature; - sourceTree = ""; - }; - 379BB90717F03F3700829B88 /* animation */ = { - isa = PBXGroup; - children = ( - 379BB90817F03F3700829B88 /* CCArmatureAnimation.cpp */, - 379BB90917F03F3700829B88 /* CCArmatureAnimation.h */, - 379BB90A17F03F3700829B88 /* CCProcessBase.cpp */, - 379BB90B17F03F3700829B88 /* CCProcessBase.h */, - 379BB90C17F03F3700829B88 /* CCTween.cpp */, - 379BB90D17F03F3700829B88 /* CCTween.h */, - ); - path = animation; - sourceTree = ""; - }; - 379BB91217F03F3700829B88 /* datas */ = { - isa = PBXGroup; - children = ( - 379BB91317F03F3700829B88 /* CCDatas.cpp */, - 379BB91417F03F3700829B88 /* CCDatas.h */, - ); - path = datas; - sourceTree = ""; - }; - 379BB91517F03F3700829B88 /* display */ = { - isa = PBXGroup; - children = ( - 379BB91617F03F3700829B88 /* CCBatchNode.cpp */, - 379BB91717F03F3700829B88 /* CCBatchNode.h */, - 379BB91817F03F3700829B88 /* CCDecorativeDisplay.cpp */, - 379BB91917F03F3700829B88 /* CCDecorativeDisplay.h */, - 379BB91A17F03F3700829B88 /* CCDisplayFactory.cpp */, - 379BB91B17F03F3700829B88 /* CCDisplayFactory.h */, - 379BB91C17F03F3700829B88 /* CCDisplayManager.cpp */, - 379BB91D17F03F3700829B88 /* CCDisplayManager.h */, - 379BB91E17F03F3700829B88 /* CCSkin.cpp */, - 379BB91F17F03F3700829B88 /* CCSkin.h */, - ); - path = display; - sourceTree = ""; - }; - 379BB92017F03F3700829B88 /* external_tool */ = { - isa = PBXGroup; - children = ( - 379BB92117F03F3700829B88 /* sigslot.h */, - ); - path = external_tool; - sourceTree = ""; - }; - 379BB92217F03F3700829B88 /* physics */ = { - isa = PBXGroup; - children = ( - 379BB92317F03F3700829B88 /* CCColliderDetector.cpp */, - 379BB92417F03F3700829B88 /* CCColliderDetector.h */, - ); - path = physics; - sourceTree = ""; - }; - 379BB92517F03F3700829B88 /* utils */ = { - isa = PBXGroup; - children = ( - 379BB92617F03F3700829B88 /* CCArmatureDataManager.cpp */, - 379BB92717F03F3700829B88 /* CCArmatureDataManager.h */, - 379BB92817F03F3700829B88 /* CCArmatureDefine.cpp */, - 379BB92917F03F3700829B88 /* CCArmatureDefine.h */, - 379BB92A17F03F3700829B88 /* CCDataReaderHelper.cpp */, - 379BB92B17F03F3700829B88 /* CCDataReaderHelper.h */, - 379BB92C17F03F3700829B88 /* CCSpriteFrameCacheHelper.cpp */, - 379BB92D17F03F3700829B88 /* CCSpriteFrameCacheHelper.h */, - 379BB92E17F03F3700829B88 /* CCTransformHelp.cpp */, - 379BB92F17F03F3700829B88 /* CCTransformHelp.h */, - 379BB93017F03F3700829B88 /* CCTweenFunction.cpp */, - 379BB93117F03F3700829B88 /* CCTweenFunction.h */, - 379BB93217F03F3700829B88 /* CCUtilMath.cpp */, - 379BB93317F03F3700829B88 /* CCUtilMath.h */, - ); - path = utils; - sourceTree = ""; - }; - 379BB93417F03F3700829B88 /* Components */ = { - isa = PBXGroup; - children = ( - 373B911F18788FB000198F86 /* CCComBase.h */, - 379BB93517F03F3700829B88 /* CCComAttribute.cpp */, - 379BB93617F03F3700829B88 /* CCComAttribute.h */, - 379BB93717F03F3700829B88 /* CCComAudio.cpp */, - 379BB93817F03F3700829B88 /* CCComAudio.h */, - 379BB93917F03F3700829B88 /* CCComController.cpp */, - 379BB93A17F03F3700829B88 /* CCComController.h */, - 379BB93B17F03F3700829B88 /* CCComRender.cpp */, - 379BB93C17F03F3700829B88 /* CCComRender.h */, - 379BB93D17F03F3700829B88 /* CCInputDelegate.cpp */, - 379BB93E17F03F3700829B88 /* CCInputDelegate.h */, - ); - path = Components; - sourceTree = ""; - }; - 379BB93F17F03F3700829B88 /* GUI */ = { - isa = PBXGroup; - children = ( - 379BB94017F03F3700829B88 /* Action */, - 379BB94117F03F3700829B88 /* BaseClasses */, - 379BB94617F03F3700829B88 /* Layouts */, - 379BB94F17F03F3700829B88 /* System */, - 379BB95817F03F3700829B88 /* UIWidgets */, - ); - path = GUI; - sourceTree = ""; - }; - 379BB94017F03F3700829B88 /* Action */ = { - isa = PBXGroup; - children = ( - ); - path = Action; - sourceTree = ""; - }; - 379BB94117F03F3700829B88 /* BaseClasses */ = { - isa = PBXGroup; - children = ( - 379BB94417F03F3700829B88 /* UIWidget.cpp */, - 379BB94517F03F3700829B88 /* UIWidget.h */, - ); - path = BaseClasses; - sourceTree = ""; - }; - 379BB94617F03F3700829B88 /* Layouts */ = { - isa = PBXGroup; - children = ( - 379BB94717F03F3700829B88 /* UILayout.cpp */, - 379BB94817F03F3700829B88 /* UILayout.h */, - 379BB94B17F03F3700829B88 /* UILayoutParameter.cpp */, - 379BB94C17F03F3700829B88 /* UILayoutParameter.h */, - 379BB94D17F03F3700829B88 /* UILayoutDefine.cpp */, - 379BB94E17F03F3700829B88 /* UILayoutDefine.h */, - ); - path = Layouts; - sourceTree = ""; - }; - 379BB94F17F03F3700829B88 /* System */ = { - isa = PBXGroup; - children = ( - 46513EAF187BFBA200B5ABE1 /* UITouchGroup.cpp */, - 46513EB0187BFBA200B5ABE1 /* UITouchGroup.h */, - 379BB95017F03F3700829B88 /* CocosGUI.cpp */, - 379BB95117F03F3700829B88 /* CocosGUI.h */, - 379BB95217F03F3700829B88 /* UIHelper.cpp */, - 379BB95317F03F3700829B88 /* UIHelper.h */, - ); - path = System; - sourceTree = ""; - }; - 379BB95817F03F3700829B88 /* UIWidgets */ = { - isa = PBXGroup; - children = ( - 379BB95917F03F3700829B88 /* Compatible */, - 379BB95B17F03F3700829B88 /* ScrollWidget */, - 379BB96517F03F3700829B88 /* UIButton.cpp */, - 379BB96617F03F3700829B88 /* UIButton.h */, - 379BB96717F03F3700829B88 /* UICheckBox.cpp */, - 379BB96817F03F3700829B88 /* UICheckBox.h */, - 379BB96917F03F3700829B88 /* UIImageView.cpp */, - 379BB96A17F03F3700829B88 /* UIImageView.h */, - 379BB96B17F03F3700829B88 /* UILabel.cpp */, - 379BB96C17F03F3700829B88 /* UILabel.h */, - 379BB96D17F03F3700829B88 /* UILabelAtlas.cpp */, - 379BB96E17F03F3700829B88 /* UILabelAtlas.h */, - 379BB96F17F03F3700829B88 /* UILabelBMFont.cpp */, - 379BB97017F03F3700829B88 /* UILabelBMFont.h */, - 379BB97117F03F3700829B88 /* UILoadingBar.cpp */, - 379BB97217F03F3700829B88 /* UILoadingBar.h */, - 379BB97317F03F3700829B88 /* UISlider.cpp */, - 379BB97417F03F3700829B88 /* UISlider.h */, - 379BB97717F03F3700829B88 /* UITextField.cpp */, - 379BB97817F03F3700829B88 /* UITextField.h */, - ); - path = UIWidgets; - sourceTree = ""; - }; - 379BB95917F03F3700829B88 /* Compatible */ = { - isa = PBXGroup; - children = ( - 379BB95A17F03F3700829B88 /* CompatibleClasses.h */, - ); - path = Compatible; - sourceTree = ""; - }; - 379BB95B17F03F3700829B88 /* ScrollWidget */ = { - isa = PBXGroup; - children = ( - 379BB95E17F03F3700829B88 /* UIListView.cpp */, - 379BB95F17F03F3700829B88 /* UIListView.h */, - 379BB96017F03F3700829B88 /* UIPageView.cpp */, - 379BB96117F03F3700829B88 /* UIPageView.h */, - 379BB96217F03F3700829B88 /* UIScrollInterface.h */, - 379BB96317F03F3700829B88 /* UIScrollView.cpp */, - 379BB96417F03F3700829B88 /* UIScrollView.h */, - ); - path = ScrollWidget; - sourceTree = ""; - }; - 379BB97917F03F3700829B88 /* Json */ = { - isa = PBXGroup; - children = ( - 375BD4C7186841280024609E /* rapidjson */, - 379BB97C17F03F3700829B88 /* DictionaryHelper.cpp */, - 379BB97D17F03F3700829B88 /* DictionaryHelper.h */, - 43B91F031949BAF100F7F815 /* CocoLoader.cpp */, - 43B91F041949BAF100F7F815 /* CocoLoader.h */, - ); - path = Json; - sourceTree = ""; - }; - 379BB99017F03F3700829B88 /* Reader */ = { - isa = PBXGroup; - children = ( - 298B298F18D0668400C1920F /* WidgetReader */, - 379BB99117F03F3700829B88 /* GUIReader.cpp */, - 379BB99217F03F3700829B88 /* GUIReader.h */, - 379BB99317F03F3700829B88 /* SceneReader.cpp */, - 379BB99417F03F3700829B88 /* SceneReader.h */, - ); - path = Reader; - sourceTree = ""; - }; - 37CA271817D87D7600A649D0 /* CocoStudio */ = { - isa = PBXGroup; - children = ( - 38FA2EA4194EA58000FF2BE4 /* ActionTimeline */, - 375BD5011868454E0024609E /* Action */, - 375BD4BA1868411B0024609E /* Trigger */, - 379BB90617F03F3700829B88 /* Armature */, - 379BB93417F03F3700829B88 /* Components */, - 379BB93F17F03F3700829B88 /* GUI */, - 379BB97917F03F3700829B88 /* Json */, - 379BB99017F03F3700829B88 /* Reader */, - ); - path = CocoStudio; - sourceTree = ""; - }; - 38FA2EA4194EA58000FF2BE4 /* ActionTimeline */ = { - isa = PBXGroup; - children = ( - 38FA2EA5194EA58000FF2BE4 /* CCActionTimeline.cpp */, - 38FA2EA6194EA58000FF2BE4 /* CCActionTimeline.h */, - 38FA2EA7194EA58000FF2BE4 /* CCActionTimelineCache.cpp */, - 38FA2EA8194EA58000FF2BE4 /* CCActionTimelineCache.h */, - 38FA2EA9194EA58000FF2BE4 /* CCFrame.cpp */, - 38FA2EAA194EA58000FF2BE4 /* CCFrame.h */, - 38FA2EAB194EA58000FF2BE4 /* CCNodeReader.cpp */, - 38FA2EAC194EA58000FF2BE4 /* CCNodeReader.h */, - 38FA2EAD194EA58000FF2BE4 /* CCTimeLine.cpp */, - 38FA2EAE194EA58000FF2BE4 /* CCTimeLine.h */, - 38FA2EAF194EA58000FF2BE4 /* CCTimelineMacro.h */, - ); - path = ActionTimeline; - sourceTree = ""; - }; 78C7DDAA14EBA5050085D0C2 /* Resources */ = { isa = PBXGroup; children = ( - 8949462E19570B8E00487A09 /* fzcyjt.ttf */, - 8949459419570B8400487A09 /* actor4_0.png */, - 8949459519570B8400487A09 /* actor4_1.png */, - 8949459619570B8400487A09 /* actor4_2.png */, - 8949459719570B8400487A09 /* actor4_3.png */, - 8949459819570B8400487A09 /* actor4_4.png */, - 8949459919570B8400487A09 /* actor5_0.png */, - 8949459A19570B8400487A09 /* actor5_1.png */, - 8949459B19570B8400487A09 /* actor5_2.png */, - 8949459C19570B8400487A09 /* actor5_3.png */, - 8949459D19570B8400487A09 /* actor5_4.png */, - 8949459E19570B8400487A09 /* actor7_0.png */, - 8949459F19570B8400487A09 /* actor7_1.png */, - 894945A019570B8400487A09 /* actor7_2.png */, - 894945A119570B8400487A09 /* actor7_3.png */, - 894945A219570B8400487A09 /* actor7_4.png */, - 894945A319570B8400487A09 /* actor8_0.png */, - 894945A419570B8400487A09 /* actor8_1.png */, - 894945A519570B8400487A09 /* actor8_2.png */, - 894945A619570B8400487A09 /* actor8_3.png */, - 894945A719570B8400487A09 /* actor8_4.png */, - 894945A819570B8400487A09 /* actor111.png */, - 894945A919570B8400487A09 /* actor113.png */, - 894945AA19570B8400487A09 /* actor114.png */, - 894945AB19570B8400487A09 /* actor115.png */, - 894945AC19570B8400487A09 /* actor117.png */, - 894945AD19570B8400487A09 /* actor120.png */, - 894945AE19570B8400487A09 /* alert_style1.tmx */, - 894945AF19570B8400487A09 /* alert_style2.tmx */, - 894945B019570B8400487A09 /* alert_style3.tmx */, - 894945B119570B8400487A09 /* attack_damage.plist */, - 894945B219570B8400487A09 /* attack_damage.png */, - 894945B319570B8400487A09 /* attack1.ExportJson */, - 894945B419570B8400487A09 /* attack2.ExportJson */, - 894945B519570B8400487A09 /* attack3.ExportJson */, - 894945B619570B8400487A09 /* attack4.ExportJson */, - 894945B719570B8400487A09 /* attack10.plist */, - 894945B819570B8400487A09 /* attack10.png */, - 894945B919570B8400487A09 /* attack20.plist */, - 894945BA19570B8400487A09 /* attack20.png */, - 894945BB19570B8400487A09 /* attack30.plist */, - 894945BC19570B8400487A09 /* attack30.png */, - 894945BD19570B8400487A09 /* attack40.plist */, - 894945BE19570B8400487A09 /* attack40.png */, - 894945BF19570B8400487A09 /* audio_battle_attack1.wav */, - 894945C019570B8400487A09 /* audio_battle_attack2.wav */, - 894945C119570B8400487A09 /* audio_battle_end.mp3 */, - 894945C219570B8400487A09 /* audio_battle_lose.mp3 */, - 894945C319570B8400487A09 /* audio_battle_menu.wav */, - 894945C419570B8400487A09 /* audio_battle_start.wav */, - 894945C519570B8400487A09 /* audio_battle.mp3 */, - 894945C619570B8400487A09 /* audio_effect_btn.wav */, - 894945C719570B8400487A09 /* audio_inn.mp3 */, - 894945C819570B8400487A09 /* audio_map_01.mp3 */, - 894945C919570B8400487A09 /* audio_map_02.mp3 */, - 894945CA19570B8400487A09 /* audio_map_03.mp3 */, - 894945CB19570B8400487A09 /* audio_skill_cure.wav */, - 894945CC19570B8400487A09 /* audio_skill_fire.wav */, - 894945CD19570B8400487A09 /* audio_start_btn.wav */, - 894945CE19570B8400487A09 /* audio_start.mp3 */, - 894945CF19570B8400487A09 /* audio_use_items.wav */, - 894945D019570B8400487A09 /* battle_battlemenu_style1.tmx */, - 894945D119570B8400487A09 /* battle_battlemenu_style2.tmx */, - 894945D219570B8400487A09 /* battle_battlemenu_style3.tmx */, - 894945D319570B8400487A09 /* battle_bg.png */, - 894945D419570B8400487A09 /* battle_menu_style1.tmx */, - 894945D519570B8400487A09 /* battle_menu_style2.tmx */, - 894945D619570B8400487A09 /* battle_menu_style3.tmx */, - 894945D719570B8400487A09 /* battle_msg_style1.tmx */, - 894945D819570B8400487A09 /* battle_msg_style2.tmx */, - 894945D919570B8400487A09 /* battle_msg_style3.tmx */, - 894945DA19570B8400487A09 /* battle_select_style1.tmx */, - 894945DB19570B8400487A09 /* battle_select_style2.tmx */, - 894945DC19570B8400487A09 /* battle_select_style3.tmx */, - 894945DD19570B8400487A09 /* db.sys */, - 894945DE19570B8400487A09 /* dialog_style1.tmx */, - 894945DF19570B8400487A09 /* dialog_style2.tmx */, - 894945E019570B8400487A09 /* dialog_style3.tmx */, - 8949453A19570B5F00487A09 /* joystick.plist */, - 8949453B19570B5F00487A09 /* joystick.png */, - 8949453C19570B5F00487A09 /* main.plist */, - 8949453D19570B5F00487A09 /* main.png */, - 8949453E19570B5F00487A09 /* map_01.tmx */, - 8949453F19570B5F00487A09 /* map_02.tmx */, - 8949454019570B5F00487A09 /* map_03.tmx */, - 8949454119570B5F00487A09 /* map_menu1_style1.tmx */, - 8949454219570B6000487A09 /* map_menu1_style2.tmx */, - 8949454319570B6000487A09 /* map_menu1_style3.tmx */, - 8949454419570B6000487A09 /* map_menu2_style1.tmx */, - 8949454519570B6000487A09 /* map_menu2_style2.tmx */, - 8949454619570B6000487A09 /* map_menu2_style3.tmx */, - 8949454719570B6000487A09 /* map_menu3_style1.tmx */, - 8949454819570B6000487A09 /* map_menu3_style2.tmx */, - 8949454919570B6000487A09 /* map_menu3_style3.tmx */, - 8949454A19570B6000487A09 /* map_menu4_style1.tmx */, - 8949454B19570B6000487A09 /* map_menu4_style2.tmx */, - 8949454C19570B6000487A09 /* map_menu4_style3.tmx */, - 8949454D19570B6000487A09 /* map_menu5_style1.tmx */, - 8949454E19570B6000487A09 /* map_menu5_style2.tmx */, - 8949454F19570B6000487A09 /* map_menu5_style3.tmx */, - 8949455019570B6000487A09 /* map.png */, - 8949455119570B6000487A09 /* monsters.plist */, - 8949455219570B6000487A09 /* monsters.png */, - 8949455319570B6000487A09 /* scene_battle_cns.plist */, - 8949455419570B6000487A09 /* scene_loading_cns.plist */, - 8949455519570B6000487A09 /* scene_map_cns.plist */, - 8949455619570B6000487A09 /* scene_start_cns.plist */, - 8949455719570B6000487A09 /* select_player_style1.tmx */, - 8949455819570B6000487A09 /* select_player_style2.tmx */, - 8949455919570B6000487A09 /* select_player_style3.tmx */, - 8949455A19570B6000487A09 /* shop_list_style1.tmx */, - 8949455B19570B6000487A09 /* shop_list_style2.tmx */, - 8949455C19570B6000487A09 /* shop_list_style3.tmx */, - 8949455D19570B6000487A09 /* shop_menu_style1.tmx */, - 8949455E19570B6000487A09 /* shop_menu_style2.tmx */, - 8949455F19570B6000487A09 /* shop_menu_style3.tmx */, - 8949456019570B6000487A09 /* skill_cure.plist */, - 8949456119570B6000487A09 /* skill_fire.plist */, - 8949456219570B6000487A09 /* start_bg.png */, - 8949456319570B6000487A09 /* use_item.plist */, - 8949456419570B6000487A09 /* Window_a_00.png */, - 8949456519570B6000487A09 /* Window_b_00.png */, - 8949456619570B6000487A09 /* Window_c_00.png */, + 8974E3C91A43064900D343A3 /* fzcyjt.ttf */, + 8974E2CC1A4303E800D343A3 /* actor4_0.png */, + 8974E2CD1A4303E800D343A3 /* actor4_1.png */, + 8974E2CE1A4303E800D343A3 /* actor4_2.png */, + 8974E2CF1A4303E800D343A3 /* actor4_3.png */, + 8974E2D01A4303E800D343A3 /* actor4_4.png */, + 8974E2D11A4303E800D343A3 /* actor5_0.png */, + 8974E2D21A4303E800D343A3 /* actor5_1.png */, + 8974E2D31A4303E800D343A3 /* actor5_2.png */, + 8974E2D41A4303E800D343A3 /* actor5_3.png */, + 8974E2D51A4303E800D343A3 /* actor5_4.png */, + 8974E2D61A4303E800D343A3 /* actor7_0.png */, + 8974E2D71A4303E800D343A3 /* actor7_1.png */, + 8974E2D81A4303E800D343A3 /* actor7_2.png */, + 8974E2D91A4303E800D343A3 /* actor7_3.png */, + 8974E2DA1A4303E800D343A3 /* actor7_4.png */, + 8974E2DB1A4303E800D343A3 /* actor8_0.png */, + 8974E2DC1A4303E800D343A3 /* actor8_1.png */, + 8974E2DD1A4303E800D343A3 /* actor8_2.png */, + 8974E2DE1A4303E800D343A3 /* actor8_3.png */, + 8974E2DF1A4303E800D343A3 /* actor8_4.png */, + 8974E2E01A4303E800D343A3 /* actor111.png */, + 8974E2E11A4303E800D343A3 /* actor113.png */, + 8974E2E21A4303E800D343A3 /* actor114.png */, + 8974E2E31A4303E800D343A3 /* actor115.png */, + 8974E2E41A4303E800D343A3 /* actor117.png */, + 8974E2E51A4303E800D343A3 /* actor120.png */, + 8974E2E61A4303E800D343A3 /* alert_style1.tmx */, + 8974E2E71A4303E800D343A3 /* alert_style2.tmx */, + 8974E2E81A4303E800D343A3 /* alert_style3.tmx */, + 8974E2E91A4303E800D343A3 /* attack_damage.plist */, + 8974E2EA1A4303E800D343A3 /* attack_damage.png */, + 8974E2EB1A4303E800D343A3 /* attack1.ExportJson */, + 8974E2EC1A4303E800D343A3 /* attack2.ExportJson */, + 8974E2ED1A4303E800D343A3 /* attack3.ExportJson */, + 8974E2EE1A4303E800D343A3 /* attack4.ExportJson */, + 8974E2EF1A4303E800D343A3 /* attack10.plist */, + 8974E2F01A4303E800D343A3 /* attack10.png */, + 8974E2F11A4303E800D343A3 /* attack20.plist */, + 8974E2F21A4303E800D343A3 /* attack20.png */, + 8974E2F31A4303E800D343A3 /* attack30.plist */, + 8974E2F41A4303E800D343A3 /* attack30.png */, + 8974E2F51A4303E800D343A3 /* attack40.plist */, + 8974E2F61A4303E800D343A3 /* attack40.png */, + 8974E2F71A4303E800D343A3 /* audio_battle_attack1.wav */, + 8974E2F81A4303E800D343A3 /* audio_battle_attack2.wav */, + 8974E2F91A4303E800D343A3 /* audio_battle_end.mp3 */, + 8974E2FA1A4303E800D343A3 /* audio_battle_lose.mp3 */, + 8974E2FB1A4303E800D343A3 /* audio_battle_menu.wav */, + 8974E2FC1A4303E800D343A3 /* audio_battle_start.wav */, + 8974E2FD1A4303E800D343A3 /* audio_battle.mp3 */, + 8974E2FE1A4303E800D343A3 /* audio_effect_btn.wav */, + 8974E2FF1A4303E800D343A3 /* audio_inn.mp3 */, + 8974E3001A4303E800D343A3 /* audio_map_01.mp3 */, + 8974E3011A4303E800D343A3 /* audio_map_02.mp3 */, + 8974E3021A4303E800D343A3 /* audio_map_03.mp3 */, + 8974E3031A4303E800D343A3 /* audio_skill_cure.wav */, + 8974E3041A4303E800D343A3 /* audio_skill_fire.wav */, + 8974E3051A4303E800D343A3 /* audio_start_btn.wav */, + 8974E3061A4303E800D343A3 /* audio_start.mp3 */, + 8974E3071A4303E800D343A3 /* audio_use_items.wav */, + 8974E3081A4303E800D343A3 /* battle_battlemenu_style1.tmx */, + 8974E3091A4303E800D343A3 /* battle_battlemenu_style2.tmx */, + 8974E30A1A4303E800D343A3 /* battle_battlemenu_style3.tmx */, + 8974E30B1A4303E800D343A3 /* battle_bg.png */, + 8974E30C1A4303E800D343A3 /* battle_menu_style1.tmx */, + 8974E30D1A4303E800D343A3 /* battle_menu_style2.tmx */, + 8974E30E1A4303E800D343A3 /* battle_menu_style3.tmx */, + 8974E30F1A4303E800D343A3 /* battle_msg_style1.tmx */, + 8974E3101A4303E800D343A3 /* battle_msg_style2.tmx */, + 8974E3111A4303E800D343A3 /* battle_msg_style3.tmx */, + 8974E3121A4303E900D343A3 /* battle_select_style1.tmx */, + 8974E3131A4303E900D343A3 /* battle_select_style2.tmx */, + 8974E3141A4303E900D343A3 /* battle_select_style3.tmx */, + 8974E3151A4303E900D343A3 /* db.sys */, + 8974E3161A4303E900D343A3 /* dialog_style1.tmx */, + 8974E3171A4303E900D343A3 /* dialog_style2.tmx */, + 8974E3181A4303E900D343A3 /* dialog_style3.tmx */, + 8974E2721A4303D500D343A3 /* joystick.plist */, + 8974E2731A4303D500D343A3 /* joystick.png */, + 8974E2741A4303D500D343A3 /* main.plist */, + 8974E2751A4303D500D343A3 /* main.png */, + 8974E2761A4303D500D343A3 /* map_01.tmx */, + 8974E2771A4303D500D343A3 /* map_02.tmx */, + 8974E2781A4303D500D343A3 /* map_03.tmx */, + 8974E2791A4303D500D343A3 /* map_menu1_style1.tmx */, + 8974E27A1A4303D500D343A3 /* map_menu1_style2.tmx */, + 8974E27B1A4303D500D343A3 /* map_menu1_style3.tmx */, + 8974E27C1A4303D500D343A3 /* map_menu2_style1.tmx */, + 8974E27D1A4303D500D343A3 /* map_menu2_style2.tmx */, + 8974E27E1A4303D500D343A3 /* map_menu2_style3.tmx */, + 8974E27F1A4303D500D343A3 /* map_menu3_style1.tmx */, + 8974E2801A4303D500D343A3 /* map_menu3_style2.tmx */, + 8974E2811A4303D500D343A3 /* map_menu3_style3.tmx */, + 8974E2821A4303D500D343A3 /* map_menu4_style1.tmx */, + 8974E2831A4303D500D343A3 /* map_menu4_style2.tmx */, + 8974E2841A4303D500D343A3 /* map_menu4_style3.tmx */, + 8974E2851A4303D500D343A3 /* map_menu5_style1.tmx */, + 8974E2861A4303D500D343A3 /* map_menu5_style2.tmx */, + 8974E2871A4303D500D343A3 /* map_menu5_style3.tmx */, + 8974E2881A4303D500D343A3 /* map.png */, + 8974E2891A4303D500D343A3 /* monsters.plist */, + 8974E28A1A4303D500D343A3 /* monsters.png */, + 8974E28B1A4303D500D343A3 /* scene_battle_cns.plist */, + 8974E28C1A4303D500D343A3 /* scene_loading_cns.plist */, + 8974E28D1A4303D500D343A3 /* scene_map_cns.plist */, + 8974E28E1A4303D500D343A3 /* scene_start_cns.plist */, + 8974E28F1A4303D500D343A3 /* select_player_style1.tmx */, + 8974E2901A4303D500D343A3 /* select_player_style2.tmx */, + 8974E2911A4303D500D343A3 /* select_player_style3.tmx */, + 8974E2921A4303D500D343A3 /* shop_list_style1.tmx */, + 8974E2931A4303D500D343A3 /* shop_list_style2.tmx */, + 8974E2941A4303D500D343A3 /* shop_list_style3.tmx */, + 8974E2951A4303D500D343A3 /* shop_menu_style1.tmx */, + 8974E2961A4303D500D343A3 /* shop_menu_style2.tmx */, + 8974E2971A4303D500D343A3 /* shop_menu_style3.tmx */, + 8974E2981A4303D500D343A3 /* skill_cure.plist */, + 8974E2991A4303D500D343A3 /* skill_fire.plist */, + 8974E29A1A4303D500D343A3 /* start_bg.png */, + 8974E29B1A4303D500D343A3 /* use_item.plist */, + 8974E29C1A4303D500D343A3 /* Window_a_00.png */, + 8974E29D1A4303D500D343A3 /* Window_b_00.png */, + 8974E29E1A4303D500D343A3 /* Window_c_00.png */, D41A0AD0160F154A004552AE /* Default-568h@2x.png */, 7855E0DF153FEF240059DD9A /* Default.png */, D446FD6D16102124000ADA7B /* Default@2x.png */, @@ -2466,66 +2452,29 @@ path = ../Resources; sourceTree = ""; }; - 89D3649719570F490050A8E7 /* libs */ = { + 8974E3B21A43043E00D343A3 /* libs */ = { isa = PBXGroup; children = ( - 89D3649819570F490050A8E7 /* CppSQLite3.cpp */, - 89D3649919570F490050A8E7 /* CppSQLite3.h */, - 89D3649A19570F490050A8E7 /* JsonBox */, + 8974E3B61A43049600D343A3 /* JsonBox */, + 8974E3B31A43045000D343A3 /* CppSQLite3.cpp */, + 8974E3B41A43045000D343A3 /* CppSQLite3.h */, ); name = libs; - path = ../libs; sourceTree = ""; }; - 89D3649A19570F490050A8E7 /* JsonBox */ = { + 8974E3B61A43049600D343A3 /* JsonBox */ = { isa = PBXGroup; children = ( - 89D3649B19570F490050A8E7 /* include */, - 89D364A819570F490050A8E7 /* sn.txt */, - 89D364A919570F490050A8E7 /* src */, + 8974E3B71A4304A300D343A3 /* Array.cpp */, + 8974E3B81A4304A300D343A3 /* Convert.cpp */, + 8974E3B91A4304A300D343A3 /* Escaper.cpp */, + 8974E3BA1A4304A300D343A3 /* IndentCanceller.cpp */, + 8974E3BB1A4304A300D343A3 /* Indenter.cpp */, + 8974E3BC1A4304A300D343A3 /* Object.cpp */, + 8974E3BD1A4304A300D343A3 /* SolidusEscaper.cpp */, + 8974E3BE1A4304A300D343A3 /* Value.cpp */, ); - path = JsonBox; - sourceTree = ""; - }; - 89D3649B19570F490050A8E7 /* include */ = { - isa = PBXGroup; - children = ( - 89D3649C19570F490050A8E7 /* JsonBox */, - 89D364A719570F490050A8E7 /* JsonBox.h */, - ); - path = include; - sourceTree = ""; - }; - 89D3649C19570F490050A8E7 /* JsonBox */ = { - isa = PBXGroup; - children = ( - 89D3649D19570F490050A8E7 /* Array.h */, - 89D3649E19570F490050A8E7 /* Convert.h */, - 89D3649F19570F490050A8E7 /* Escaper.h */, - 89D364A019570F490050A8E7 /* Grammar.h */, - 89D364A119570F490050A8E7 /* IndentCanceller.h */, - 89D364A219570F490050A8E7 /* Indenter.h */, - 89D364A319570F490050A8E7 /* Object.h */, - 89D364A419570F490050A8E7 /* OutputFilter.h */, - 89D364A519570F490050A8E7 /* SolidusEscaper.h */, - 89D364A619570F490050A8E7 /* Value.h */, - ); - path = JsonBox; - sourceTree = ""; - }; - 89D364A919570F490050A8E7 /* src */ = { - isa = PBXGroup; - children = ( - 89D364AA19570F490050A8E7 /* Array.cpp */, - 89D364AB19570F490050A8E7 /* Convert.cpp */, - 89D364AC19570F490050A8E7 /* Escaper.cpp */, - 89D364AD19570F490050A8E7 /* IndentCanceller.cpp */, - 89D364AE19570F490050A8E7 /* Indenter.cpp */, - 89D364AF19570F490050A8E7 /* Object.cpp */, - 89D364B019570F490050A8E7 /* SolidusEscaper.cpp */, - 89D364B119570F490050A8E7 /* Value.cpp */, - ); - path = src; + name = JsonBox; sourceTree = ""; }; /* End PBXGroup section */ @@ -2597,138 +2546,137 @@ isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 8949457519570B6000487A09 /* map_menu3_style2.tmx in Resources */, - 894945E919570B8400487A09 /* actor5_3.png in Resources */, - 8949460919570B8400487A09 /* attack30.png in Resources */, - 894945F419570B8400487A09 /* actor8_4.png in Resources */, - 894945F319570B8400487A09 /* actor8_3.png in Resources */, - 8949457319570B6000487A09 /* map_menu2_style3.tmx in Resources */, - 8949458719570B6000487A09 /* shop_list_style1.tmx in Resources */, + 8974E2AD1A4303D500D343A3 /* map_menu3_style2.tmx in Resources */, + 8974E3211A4303E900D343A3 /* actor5_3.png in Resources */, + 8974E3411A4303E900D343A3 /* attack30.png in Resources */, + 8974E32C1A4303E900D343A3 /* actor8_4.png in Resources */, + 8974E32B1A4303E900D343A3 /* actor8_3.png in Resources */, + 8974E2AB1A4303D500D343A3 /* map_menu2_style3.tmx in Resources */, + 8974E2BF1A4303D500D343A3 /* shop_list_style1.tmx in Resources */, 7855E0E1153FEF240059DD9A /* Default.png in Resources */, - 8949457E19570B6000487A09 /* monsters.plist in Resources */, - 8949458319570B6000487A09 /* scene_start_cns.plist in Resources */, - 8949457619570B6000487A09 /* map_menu3_style3.tmx in Resources */, - 8949458119570B6000487A09 /* scene_loading_cns.plist in Resources */, - 894945F619570B8400487A09 /* actor113.png in Resources */, + 8974E2B61A4303D500D343A3 /* monsters.plist in Resources */, + 8974E2BB1A4303D500D343A3 /* scene_start_cns.plist in Resources */, + 8974E2AE1A4303D500D343A3 /* map_menu3_style3.tmx in Resources */, + 8974E2B91A4303D500D343A3 /* scene_loading_cns.plist in Resources */, + 8974E32E1A4303E900D343A3 /* actor113.png in Resources */, D4EF949A15BD2D8B00D803EB /* Icon-57.png in Resources */, - 8949458419570B6000487A09 /* select_player_style1.tmx in Resources */, - 8949462919570B8400487A09 /* battle_select_style3.tmx in Resources */, - 8949459219570B6000487A09 /* Window_b_00.png in Resources */, - 894945FE19570B8400487A09 /* attack_damage.plist in Resources */, - 8949457819570B6000487A09 /* map_menu4_style2.tmx in Resources */, - 8949456C19570B6000487A09 /* map_02.tmx in Resources */, - 8949457019570B6000487A09 /* map_menu1_style3.tmx in Resources */, - 8949457419570B6000487A09 /* map_menu3_style1.tmx in Resources */, - 894945EC19570B8400487A09 /* actor7_1.png in Resources */, - 8949461219570B8400487A09 /* audio_battle.mp3 in Resources */, - 8949462719570B8400487A09 /* battle_select_style1.tmx in Resources */, - 8949458C19570B6000487A09 /* shop_menu_style3.tmx in Resources */, - 8949461419570B8400487A09 /* audio_inn.mp3 in Resources */, + 8974E2BC1A4303D500D343A3 /* select_player_style1.tmx in Resources */, + 8974E3611A4303E900D343A3 /* battle_select_style3.tmx in Resources */, + 8974E2CA1A4303D500D343A3 /* Window_b_00.png in Resources */, + 8974E3361A4303E900D343A3 /* attack_damage.plist in Resources */, + 8974E2B01A4303D500D343A3 /* map_menu4_style2.tmx in Resources */, + 8974E2A41A4303D500D343A3 /* map_02.tmx in Resources */, + 8974E2A81A4303D500D343A3 /* map_menu1_style3.tmx in Resources */, + 8974E2AC1A4303D500D343A3 /* map_menu3_style1.tmx in Resources */, + 8974E3241A4303E900D343A3 /* actor7_1.png in Resources */, + 8974E34A1A4303E900D343A3 /* audio_battle.mp3 in Resources */, + 8974E35F1A4303E900D343A3 /* battle_select_style1.tmx in Resources */, + 8974E2C41A4303D500D343A3 /* shop_menu_style3.tmx in Resources */, + 8974E34C1A4303E900D343A3 /* audio_inn.mp3 in Resources */, D4EF949C15BD2D8E00D803EB /* Icon-114.png in Resources */, - 8949458619570B6000487A09 /* select_player_style3.tmx in Resources */, - 8949460319570B8400487A09 /* attack4.ExportJson in Resources */, - 8949457D19570B6000487A09 /* map.png in Resources */, - 8949460B19570B8400487A09 /* attack40.png in Resources */, - 8949461119570B8400487A09 /* audio_battle_start.wav in Resources */, - 8949462A19570B8400487A09 /* db.sys in Resources */, - 894945FA19570B8400487A09 /* actor120.png in Resources */, + 8974E2BE1A4303D500D343A3 /* select_player_style3.tmx in Resources */, + 8974E33B1A4303E900D343A3 /* attack4.ExportJson in Resources */, + 8974E2B51A4303D500D343A3 /* map.png in Resources */, + 8974E3431A4303E900D343A3 /* attack40.png in Resources */, + 8974E3491A4303E900D343A3 /* audio_battle_start.wav in Resources */, + 8974E3621A4303E900D343A3 /* db.sys in Resources */, + 8974E3321A4303E900D343A3 /* actor120.png in Resources */, D4EF949E15BD2D9600D803EB /* Icon-72.png in Resources */, - 8949461A19570B8400487A09 /* audio_start_btn.wav in Resources */, - 8949461519570B8400487A09 /* audio_map_01.mp3 in Resources */, - 8949458F19570B6000487A09 /* start_bg.png in Resources */, - 8949461719570B8400487A09 /* audio_map_03.mp3 in Resources */, - 894945E219570B8400487A09 /* actor4_1.png in Resources */, - 89D364B319570F490050A8E7 /* sn.txt in Resources */, - 8949457A19570B6000487A09 /* map_menu5_style1.tmx in Resources */, - 8949456719570B6000487A09 /* joystick.plist in Resources */, - 8949461619570B8400487A09 /* audio_map_02.mp3 in Resources */, - 8949461019570B8400487A09 /* audio_battle_menu.wav in Resources */, - 8949458819570B6000487A09 /* shop_list_style2.tmx in Resources */, - 8949456B19570B6000487A09 /* map_01.tmx in Resources */, - 8949460019570B8400487A09 /* attack1.ExportJson in Resources */, - 8949457719570B6000487A09 /* map_menu4_style1.tmx in Resources */, - 8949462D19570B8400487A09 /* dialog_style3.tmx in Resources */, - 8949458519570B6000487A09 /* select_player_style2.tmx in Resources */, - 894945EA19570B8400487A09 /* actor5_4.png in Resources */, - 8949462319570B8400487A09 /* battle_menu_style3.tmx in Resources */, - 894945EB19570B8400487A09 /* actor7_0.png in Resources */, - 8949462219570B8400487A09 /* battle_menu_style2.tmx in Resources */, - 8949457919570B6000487A09 /* map_menu4_style3.tmx in Resources */, - 8949461919570B8400487A09 /* audio_skill_fire.wav in Resources */, - 894945FC19570B8400487A09 /* alert_style2.tmx in Resources */, - 8949462419570B8400487A09 /* battle_msg_style1.tmx in Resources */, - 8949459319570B6000487A09 /* Window_c_00.png in Resources */, - 8949460519570B8400487A09 /* attack10.png in Resources */, - 894945EF19570B8400487A09 /* actor7_4.png in Resources */, - 894945F519570B8400487A09 /* actor111.png in Resources */, - 8949456919570B6000487A09 /* main.plist in Resources */, - 8949457219570B6000487A09 /* map_menu2_style2.tmx in Resources */, - 894945F919570B8400487A09 /* actor117.png in Resources */, - 8949461819570B8400487A09 /* audio_skill_cure.wav in Resources */, - 8949456819570B6000487A09 /* joystick.png in Resources */, + 8974E3521A4303E900D343A3 /* audio_start_btn.wav in Resources */, + 8974E34D1A4303E900D343A3 /* audio_map_01.mp3 in Resources */, + 8974E2C71A4303D500D343A3 /* start_bg.png in Resources */, + 8974E34F1A4303E900D343A3 /* audio_map_03.mp3 in Resources */, + 8974E31A1A4303E900D343A3 /* actor4_1.png in Resources */, + 8974E2B21A4303D500D343A3 /* map_menu5_style1.tmx in Resources */, + 8974E29F1A4303D500D343A3 /* joystick.plist in Resources */, + 8974E34E1A4303E900D343A3 /* audio_map_02.mp3 in Resources */, + 8974E3481A4303E900D343A3 /* audio_battle_menu.wav in Resources */, + 8974E2C01A4303D500D343A3 /* shop_list_style2.tmx in Resources */, + 8974E2A31A4303D500D343A3 /* map_01.tmx in Resources */, + 8974E3381A4303E900D343A3 /* attack1.ExportJson in Resources */, + 8974E2AF1A4303D500D343A3 /* map_menu4_style1.tmx in Resources */, + 8974E3651A4303E900D343A3 /* dialog_style3.tmx in Resources */, + 8974E2BD1A4303D500D343A3 /* select_player_style2.tmx in Resources */, + 8974E3221A4303E900D343A3 /* actor5_4.png in Resources */, + 8974E35B1A4303E900D343A3 /* battle_menu_style3.tmx in Resources */, + 8974E3231A4303E900D343A3 /* actor7_0.png in Resources */, + 8974E35A1A4303E900D343A3 /* battle_menu_style2.tmx in Resources */, + 8974E2B11A4303D500D343A3 /* map_menu4_style3.tmx in Resources */, + 8974E3511A4303E900D343A3 /* audio_skill_fire.wav in Resources */, + 8974E3341A4303E900D343A3 /* alert_style2.tmx in Resources */, + 8974E35C1A4303E900D343A3 /* battle_msg_style1.tmx in Resources */, + 8974E2CB1A4303D500D343A3 /* Window_c_00.png in Resources */, + 8974E33D1A4303E900D343A3 /* attack10.png in Resources */, + 8974E3271A4303E900D343A3 /* actor7_4.png in Resources */, + 8974E32D1A4303E900D343A3 /* actor111.png in Resources */, + 8974E2A11A4303D500D343A3 /* main.plist in Resources */, + 8974E2AA1A4303D500D343A3 /* map_menu2_style2.tmx in Resources */, + 8974E3311A4303E900D343A3 /* actor117.png in Resources */, + 8974E3501A4303E900D343A3 /* audio_skill_cure.wav in Resources */, + 8974E2A01A4303D500D343A3 /* joystick.png in Resources */, D4EF94A015BD2D9800D803EB /* Icon-144.png in Resources */, - 8949461D19570B8400487A09 /* battle_battlemenu_style1.tmx in Resources */, - 8949458E19570B6000487A09 /* skill_fire.plist in Resources */, - 894945E819570B8400487A09 /* actor5_2.png in Resources */, - 8949460119570B8400487A09 /* attack2.ExportJson in Resources */, - 894945E419570B8400487A09 /* actor4_3.png in Resources */, - 8949462B19570B8400487A09 /* dialog_style1.tmx in Resources */, - 894945FB19570B8400487A09 /* alert_style1.tmx in Resources */, - 8949456A19570B6000487A09 /* main.png in Resources */, - 8949460F19570B8400487A09 /* audio_battle_lose.mp3 in Resources */, - 8949457B19570B6000487A09 /* map_menu5_style2.tmx in Resources */, - 8949456D19570B6000487A09 /* map_03.tmx in Resources */, - 8949457F19570B6000487A09 /* monsters.png in Resources */, - 8949460C19570B8400487A09 /* audio_battle_attack1.wav in Resources */, - 8949462F19570B8E00487A09 /* fzcyjt.ttf in Resources */, - 894945FD19570B8400487A09 /* alert_style3.tmx in Resources */, - 894945F819570B8400487A09 /* actor115.png in Resources */, - 8949460719570B8400487A09 /* attack20.png in Resources */, - 8949461B19570B8400487A09 /* audio_start.mp3 in Resources */, - 8949461E19570B8400487A09 /* battle_battlemenu_style2.tmx in Resources */, - 8949459119570B6000487A09 /* Window_a_00.png in Resources */, - 8949462019570B8400487A09 /* battle_bg.png in Resources */, - 894945E719570B8400487A09 /* actor5_1.png in Resources */, + 8974E3551A4303E900D343A3 /* battle_battlemenu_style1.tmx in Resources */, + 8974E2C61A4303D500D343A3 /* skill_fire.plist in Resources */, + 8974E3201A4303E900D343A3 /* actor5_2.png in Resources */, + 8974E3391A4303E900D343A3 /* attack2.ExportJson in Resources */, + 8974E31C1A4303E900D343A3 /* actor4_3.png in Resources */, + 8974E3631A4303E900D343A3 /* dialog_style1.tmx in Resources */, + 8974E3331A4303E900D343A3 /* alert_style1.tmx in Resources */, + 8974E2A21A4303D500D343A3 /* main.png in Resources */, + 8974E3471A4303E900D343A3 /* audio_battle_lose.mp3 in Resources */, + 8974E2B31A4303D500D343A3 /* map_menu5_style2.tmx in Resources */, + 8974E2A51A4303D500D343A3 /* map_03.tmx in Resources */, + 8974E2B71A4303D500D343A3 /* monsters.png in Resources */, + 8974E3441A4303E900D343A3 /* audio_battle_attack1.wav in Resources */, + 8974E3CA1A43064900D343A3 /* fzcyjt.ttf in Resources */, + 8974E3351A4303E900D343A3 /* alert_style3.tmx in Resources */, + 8974E3301A4303E900D343A3 /* actor115.png in Resources */, + 8974E33F1A4303E900D343A3 /* attack20.png in Resources */, + 8974E3531A4303E900D343A3 /* audio_start.mp3 in Resources */, + 8974E3561A4303E900D343A3 /* battle_battlemenu_style2.tmx in Resources */, + 8974E2C91A4303D500D343A3 /* Window_a_00.png in Resources */, + 8974E3581A4303E900D343A3 /* battle_bg.png in Resources */, + 8974E31F1A4303E900D343A3 /* actor5_1.png in Resources */, D41A0AD1160F154A004552AE /* Default-568h@2x.png in Resources */, D446FD6E16102124000ADA7B /* Default@2x.png in Resources */, - 8949461319570B8400487A09 /* audio_effect_btn.wav in Resources */, - 894945F719570B8400487A09 /* actor114.png in Resources */, - 8949461C19570B8400487A09 /* audio_use_items.wav in Resources */, - 8949458B19570B6000487A09 /* shop_menu_style2.tmx in Resources */, + 8974E34B1A4303E900D343A3 /* audio_effect_btn.wav in Resources */, + 8974E32F1A4303E900D343A3 /* actor114.png in Resources */, + 8974E3541A4303E900D343A3 /* audio_use_items.wav in Resources */, + 8974E2C31A4303D500D343A3 /* shop_menu_style2.tmx in Resources */, 15A3D9961682F7F9002FB0C5 /* CMakeLists.txt in Resources */, - 8949460D19570B8400487A09 /* audio_battle_attack2.wav in Resources */, - 8949458919570B6000487A09 /* shop_list_style3.tmx in Resources */, - 8949456E19570B6000487A09 /* map_menu1_style1.tmx in Resources */, - 8949460A19570B8400487A09 /* attack40.plist in Resources */, - 8949458019570B6000487A09 /* scene_battle_cns.plist in Resources */, - 894945E619570B8400487A09 /* actor5_0.png in Resources */, - 8949462519570B8400487A09 /* battle_msg_style2.tmx in Resources */, - 894945F119570B8400487A09 /* actor8_1.png in Resources */, - 8949459019570B6000487A09 /* use_item.plist in Resources */, - 894945E119570B8400487A09 /* actor4_0.png in Resources */, - 8949462119570B8400487A09 /* battle_menu_style1.tmx in Resources */, - 8949460419570B8400487A09 /* attack10.plist in Resources */, - 8949460819570B8400487A09 /* attack30.plist in Resources */, - 8949456F19570B6000487A09 /* map_menu1_style2.tmx in Resources */, - 894945E519570B8400487A09 /* actor4_4.png in Resources */, - 8949462819570B8400487A09 /* battle_select_style2.tmx in Resources */, - 894945F219570B8400487A09 /* actor8_2.png in Resources */, - 8949457119570B6000487A09 /* map_menu2_style1.tmx in Resources */, - 8949458D19570B6000487A09 /* skill_cure.plist in Resources */, - 8949460619570B8400487A09 /* attack20.plist in Resources */, - 8949457C19570B6000487A09 /* map_menu5_style3.tmx in Resources */, - 8949462619570B8400487A09 /* battle_msg_style3.tmx in Resources */, - 894945ED19570B8400487A09 /* actor7_2.png in Resources */, - 8949462C19570B8400487A09 /* dialog_style2.tmx in Resources */, - 894945FF19570B8400487A09 /* attack_damage.png in Resources */, - 8949460219570B8400487A09 /* attack3.ExportJson in Resources */, - 894945E319570B8400487A09 /* actor4_2.png in Resources */, - 894945F019570B8400487A09 /* actor8_0.png in Resources */, - 8949458A19570B6000487A09 /* shop_menu_style1.tmx in Resources */, - 8949460E19570B8400487A09 /* audio_battle_end.mp3 in Resources */, - 894945EE19570B8400487A09 /* actor7_3.png in Resources */, - 8949461F19570B8400487A09 /* battle_battlemenu_style3.tmx in Resources */, - 8949458219570B6000487A09 /* scene_map_cns.plist in Resources */, + 8974E3451A4303E900D343A3 /* audio_battle_attack2.wav in Resources */, + 8974E2C11A4303D500D343A3 /* shop_list_style3.tmx in Resources */, + 8974E2A61A4303D500D343A3 /* map_menu1_style1.tmx in Resources */, + 8974E3421A4303E900D343A3 /* attack40.plist in Resources */, + 8974E2B81A4303D500D343A3 /* scene_battle_cns.plist in Resources */, + 8974E31E1A4303E900D343A3 /* actor5_0.png in Resources */, + 8974E35D1A4303E900D343A3 /* battle_msg_style2.tmx in Resources */, + 8974E3291A4303E900D343A3 /* actor8_1.png in Resources */, + 8974E2C81A4303D500D343A3 /* use_item.plist in Resources */, + 8974E3191A4303E900D343A3 /* actor4_0.png in Resources */, + 8974E3591A4303E900D343A3 /* battle_menu_style1.tmx in Resources */, + 8974E33C1A4303E900D343A3 /* attack10.plist in Resources */, + 8974E3401A4303E900D343A3 /* attack30.plist in Resources */, + 8974E2A71A4303D500D343A3 /* map_menu1_style2.tmx in Resources */, + 8974E31D1A4303E900D343A3 /* actor4_4.png in Resources */, + 8974E3601A4303E900D343A3 /* battle_select_style2.tmx in Resources */, + 8974E32A1A4303E900D343A3 /* actor8_2.png in Resources */, + 8974E2A91A4303D500D343A3 /* map_menu2_style1.tmx in Resources */, + 8974E2C51A4303D500D343A3 /* skill_cure.plist in Resources */, + 8974E33E1A4303E900D343A3 /* attack20.plist in Resources */, + 8974E2B41A4303D500D343A3 /* map_menu5_style3.tmx in Resources */, + 8974E35E1A4303E900D343A3 /* battle_msg_style3.tmx in Resources */, + 8974E3251A4303E900D343A3 /* actor7_2.png in Resources */, + 8974E3641A4303E900D343A3 /* dialog_style2.tmx in Resources */, + 8974E3371A4303E900D343A3 /* attack_damage.png in Resources */, + 8974E33A1A4303E900D343A3 /* attack3.ExportJson in Resources */, + 8974E31B1A4303E900D343A3 /* actor4_2.png in Resources */, + 8974E3281A4303E900D343A3 /* actor8_0.png in Resources */, + 8974E2C21A4303D500D343A3 /* shop_menu_style1.tmx in Resources */, + 8974E3461A4303E900D343A3 /* audio_battle_end.mp3 in Resources */, + 8974E3261A4303E900D343A3 /* actor7_3.png in Resources */, + 8974E3571A4303E900D343A3 /* battle_battlemenu_style3.tmx in Resources */, + 8974E2BA1A4303D500D343A3 /* scene_map_cns.plist in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2741,266 +2689,267 @@ files = ( 15A3D8FF1682F7D5002FB0C5 /* b2BroadPhase.cpp in Sources */, 15A3D9001682F7D5002FB0C5 /* b2CollideCircle.cpp in Sources */, - 298B29C018D0668400C1920F /* LayoutReader.cpp in Sources */, + 8974E3A91A43043600D343A3 /* RPGMapItemsMenuLayer.cpp in Sources */, 15A3D9011682F7D5002FB0C5 /* b2CollideEdge.cpp in Sources */, + 15C0B571196D412F007F909D /* UILayoutParameter.cpp in Sources */, 15A3D9021682F7D5002FB0C5 /* b2CollidePolygon.cpp in Sources */, 15A3D9031682F7D5002FB0C5 /* b2Collision.cpp in Sources */, - 8949466819570BD700487A09 /* RPGBattleMenu.cpp in Sources */, + 15C0B56C196D412F007F909D /* CCComRender.cpp in Sources */, + 15C0B561196D412F007F909D /* CCColliderDetector.cpp in Sources */, 15A3D9041682F7D5002FB0C5 /* b2Distance.cpp in Sources */, + 8974E3AC1A43043600D343A3 /* RPGMapRoleSprite.cpp in Sources */, + 15C0B596196D412F007F909D /* TriggerMng.cpp in Sources */, 15A3D9051682F7D5002FB0C5 /* b2DynamicTree.cpp in Sources */, 15A3D9061682F7D5002FB0C5 /* b2TimeOfImpact.cpp in Sources */, 15A3D9071682F7D5002FB0C5 /* b2ChainShape.cpp in Sources */, 15A3D9081682F7D5002FB0C5 /* b2CircleShape.cpp in Sources */, + 8974E3C21A4304A300D343A3 /* IndentCanceller.cpp in Sources */, 15A3D9091682F7D5002FB0C5 /* b2EdgeShape.cpp in Sources */, + 8974E39B1A43043600D343A3 /* OzgFileUtility.cpp in Sources */, 15A3D90A1682F7D5002FB0C5 /* b2PolygonShape.cpp in Sources */, 15A3D90B1682F7D5002FB0C5 /* b2BlockAllocator.cpp in Sources */, 15A3D90C1682F7D5002FB0C5 /* b2Draw.cpp in Sources */, - 375BD4C61868411B0024609E /* TriggerObj.cpp in Sources */, - 375BD4C31868411B0024609E /* ObjectFactory.cpp in Sources */, + 8974E3A81A43043600D343A3 /* RPGMapEquipMenuLayer.cpp in Sources */, + 15C0B54B196D412F007F909D /* CCActionEaseEx.cpp in Sources */, 15A3D90D1682F7D5002FB0C5 /* b2Math.cpp in Sources */, 15A3D90E1682F7D5002FB0C5 /* b2Settings.cpp in Sources */, + 8974E3C11A4304A300D343A3 /* Escaper.cpp in Sources */, 15A3D90F1682F7D5002FB0C5 /* b2StackAllocator.cpp in Sources */, 15A3D9101682F7D5002FB0C5 /* b2Timer.cpp in Sources */, 15A3D9111682F7D5002FB0C5 /* b2Body.cpp in Sources */, + 15C0B555196D412F007F909D /* CCTimeLine.cpp in Sources */, 15A3D9121682F7D5002FB0C5 /* b2ContactManager.cpp in Sources */, - 38FA2EB0194EA58000FF2BE4 /* CCActionTimeline.cpp in Sources */, + 15C0B559196D412F007F909D /* CCArmature.cpp in Sources */, + 8974E3AF1A43043600D343A3 /* RPGMapStatusMenuLayer.cpp in Sources */, + 8974E3C31A4304A300D343A3 /* Indenter.cpp in Sources */, 15A3D9131682F7D5002FB0C5 /* b2Fixture.cpp in Sources */, + 15C0B55C196D412F007F909D /* CCBatchNode.cpp in Sources */, 15A3D9141682F7D5002FB0C5 /* b2Island.cpp in Sources */, + 8974E3AB1A43043600D343A3 /* RPGMapNPCRoleSprite.cpp in Sources */, 15A3D9151682F7D5002FB0C5 /* b2World.cpp in Sources */, + 8974E3A11A43043600D343A3 /* RPGBattleSceneLayer.cpp in Sources */, 15A3D9161682F7D5002FB0C5 /* b2WorldCallbacks.cpp in Sources */, + 15C0B582196D412F007F909D /* CocoLoader.cpp in Sources */, + 8974E3A01A43043600D343A3 /* RPGBattlePlayerSprite.cpp in Sources */, 15A3D9171682F7D5002FB0C5 /* b2ChainAndCircleContact.cpp in Sources */, 15A3D9181682F7D5002FB0C5 /* b2ChainAndPolygonContact.cpp in Sources */, - 298B29C218D0668400C1920F /* LoadingBarReader.cpp in Sources */, - 375BD5111868454E0024609E /* CCActionManager.cpp in Sources */, 15A3D9191682F7D5002FB0C5 /* b2CircleContact.cpp in Sources */, - 8949466319570BD700487A09 /* OzgCCScrollBgNode.cpp in Sources */, + 8974E3991A43043600D343A3 /* OzgCCScrollBgNode.cpp in Sources */, + 15C0B586196D412F007F909D /* ButtonReader.cpp in Sources */, + 15C0B57D196D412F007F909D /* UILabelBMFont.cpp in Sources */, 15A3D91A1682F7D5002FB0C5 /* b2Contact.cpp in Sources */, + 15C0B593196D412F007F909D /* WidgetReader.cpp in Sources */, 15A3D91B1682F7D5002FB0C5 /* b2ContactSolver.cpp in Sources */, - 298B29BA18D0668400C1920F /* ButtonReader.cpp in Sources */, + 15C0B57B196D412F007F909D /* UILabel.cpp in Sources */, + 15C0B575196D412F007F909D /* UIListView.cpp in Sources */, + 8974E3C51A4304A300D343A3 /* SolidusEscaper.cpp in Sources */, 15A3D91C1682F7D5002FB0C5 /* b2EdgeAndCircleContact.cpp in Sources */, - 89D364B719570F490050A8E7 /* IndentCanceller.cpp in Sources */, - 8949466F19570BD700487A09 /* RPGLoadingSceneLayer.cpp in Sources */, - 8949466C19570BD700487A09 /* RPGComputingResults.cpp in Sources */, 15A3D91D1682F7D5002FB0C5 /* b2EdgeAndPolygonContact.cpp in Sources */, 15A3D91E1682F7D5002FB0C5 /* b2PolygonAndCircleContact.cpp in Sources */, + 15C0B54F196D412F007F909D /* CCActionNode.cpp in Sources */, + 15C0B57A196D412F007F909D /* UIImageView.cpp in Sources */, 15A3D91F1682F7D5002FB0C5 /* b2PolygonContact.cpp in Sources */, - 38FA2EB4194EA58000FF2BE4 /* CCTimeLine.cpp in Sources */, 15A3D9201682F7D5002FB0C5 /* b2DistanceJoint.cpp in Sources */, - 8949467219570BD700487A09 /* RPGMapEquipMenuLayer.cpp in Sources */, - 298B29BD18D0668400C1920F /* LabelAtlasReader.cpp in Sources */, 15A3D9211682F7D5002FB0C5 /* b2FrictionJoint.cpp in Sources */, + 15C0B58E196D412F007F909D /* LoadingBarReader.cpp in Sources */, + 15C0B553196D412F007F909D /* CCFrame.cpp in Sources */, + 15C0B570196D412F007F909D /* UILayoutDefine.cpp in Sources */, 15A3D9221682F7D5002FB0C5 /* b2GearJoint.cpp in Sources */, 15A3D9231682F7D5002FB0C5 /* b2Joint.cpp in Sources */, 15A3D9241682F7D5002FB0C5 /* b2MouseJoint.cpp in Sources */, - 8949467719570BD700487A09 /* RPGMapSceneLayer.cpp in Sources */, + 15C0B55B196D412F007F909D /* CCDatas.cpp in Sources */, 15A3D9251682F7D5002FB0C5 /* b2PrismaticJoint.cpp in Sources */, + 8974E3C41A4304A300D343A3 /* Object.cpp in Sources */, + 8974E3C61A4304A300D343A3 /* Value.cpp in Sources */, 15A3D9261682F7D5002FB0C5 /* b2PulleyJoint.cpp in Sources */, 15A3D9271682F7D5002FB0C5 /* b2RevoluteJoint.cpp in Sources */, 15A3D9281682F7D5002FB0C5 /* b2RopeJoint.cpp in Sources */, - 8949466919570BD700487A09 /* RPGBattleMonsterSprite.cpp in Sources */, + 15C0B56E196D412F007F909D /* UIWidget.cpp in Sources */, 15A3D9291682F7D5002FB0C5 /* b2WeldJoint.cpp in Sources */, 15A3D92A1682F7D5002FB0C5 /* b2WheelJoint.cpp in Sources */, 15A3D9391682F7D5002FB0C5 /* b2Rope.cpp in Sources */, - 8949467B19570BD700487A09 /* RPGStartSceneLayer.cpp in Sources */, + 15C0B56A196D412F007F909D /* CCComAudio.cpp in Sources */, + 8974E3AD1A43043600D343A3 /* RPGMapSceneLayer.cpp in Sources */, + 8974E39C1A43043600D343A3 /* OzgJoystickLayer.cpp in Sources */, + 15C0B562196D412F007F909D /* CCArmatureDataManager.cpp in Sources */, 15A3D9951682F7F9002FB0C5 /* chipmunk.c in Sources */, 15A3D9971682F7F9002FB0C5 /* cpConstraint.c in Sources */, 15A3D9981682F7F9002FB0C5 /* cpDampedRotarySpring.c in Sources */, 15A3D9991682F7F9002FB0C5 /* cpDampedSpring.c in Sources */, + 15C0B552196D412F007F909D /* CCActionTimelineCache.cpp in Sources */, + 8974E3A41A43043600D343A3 /* RPGDialogLayer.cpp in Sources */, 15A3D99A1682F7F9002FB0C5 /* cpGearJoint.c in Sources */, + 15C0B569196D412F007F909D /* CCComAttribute.cpp in Sources */, 15A3D99B1682F7F9002FB0C5 /* cpGrooveJoint.c in Sources */, - 8949466A19570BD700487A09 /* RPGBattlePlayerSprite.cpp in Sources */, - 43B91F051949BAF100F7F815 /* CocoLoader.cpp in Sources */, + 15C0B57C196D412F007F909D /* UILabelAtlas.cpp in Sources */, + 8974E3AE1A43043600D343A3 /* RPGMapSkillMenuLayer.cpp in Sources */, 15A3D99C1682F7F9002FB0C5 /* cpPinJoint.c in Sources */, + 15C0B55F196D412F007F909D /* CCDisplayManager.cpp in Sources */, 15A3D99D1682F7F9002FB0C5 /* cpPivotJoint.c in Sources */, - 8949467919570BD700487A09 /* RPGMapStatusMenuLayer.cpp in Sources */, 15A3D99E1682F7F9002FB0C5 /* cpRatchetJoint.c in Sources */, - 89D364B419570F490050A8E7 /* Array.cpp in Sources */, 15A3D99F1682F7F9002FB0C5 /* cpRotaryLimitJoint.c in Sources */, 15A3D9A01682F7F9002FB0C5 /* cpSimpleMotor.c in Sources */, - 8949467419570BD700487A09 /* RPGMapMenuLayer.cpp in Sources */, + 15C0B560196D412F007F909D /* CCSkin.cpp in Sources */, 15A3D9A11682F7F9002FB0C5 /* cpSlideJoint.c in Sources */, 15A3D9A21682F7F9002FB0C5 /* cpArbiter.c in Sources */, 15A3D9A31682F7F9002FB0C5 /* cpArray.c in Sources */, 15A3D9A41682F7F9002FB0C5 /* cpBB.c in Sources */, - 89D364B619570F490050A8E7 /* Escaper.cpp in Sources */, + 8974E3A71A43043600D343A3 /* RPGMapDialogLayer.cpp in Sources */, + 15C0B590196D412F007F909D /* ScrollViewReader.cpp in Sources */, + 8974E39E1A43043600D343A3 /* RPGBattleMenu.cpp in Sources */, 15A3D9A51682F7F9002FB0C5 /* cpBBTree.c in Sources */, 15A3D9A61682F7F9002FB0C5 /* cpBody.c in Sources */, + 15C0B580196D412F007F909D /* UISlider.cpp in Sources */, 15A3D9A71682F7F9002FB0C5 /* cpCollision.c in Sources */, + 15C0B573196D412F007F909D /* UIHelper.cpp in Sources */, + 15C0B55A196D412F007F909D /* CCBone.cpp in Sources */, 15A3D9A81682F7F9002FB0C5 /* cpHashSet.c in Sources */, 15A3D9A91682F7F9002FB0C5 /* cpPolyShape.c in Sources */, 15A3D9AA1682F7F9002FB0C5 /* cpShape.c in Sources */, - 8949466419570BD700487A09 /* OzgCCUtility.cpp in Sources */, + 8974E3B11A43043600D343A3 /* RPGStartSceneLayer.cpp in Sources */, + 8974E39A1A43043600D343A3 /* OzgCCUtility.cpp in Sources */, 15A3D9AB1682F7F9002FB0C5 /* cpSpace.c in Sources */, + 15C0B587196D412F007F909D /* CheckBoxReader.cpp in Sources */, 15A3D9AC1682F7F9002FB0C5 /* cpSpaceComponent.c in Sources */, 15A3D9AD1682F7F9002FB0C5 /* cpSpaceHash.c in Sources */, 15A3D9AE1682F7F9002FB0C5 /* cpSpaceQuery.c in Sources */, - 89D364B519570F490050A8E7 /* Convert.cpp in Sources */, 15A3D9AF1682F7F9002FB0C5 /* cpSpaceStep.c in Sources */, + 8974E3BF1A4304A300D343A3 /* Array.cpp in Sources */, 15A3D9B01682F7F9002FB0C5 /* cpSpatialIndex.c in Sources */, + 8974E39D1A43043600D343A3 /* RPGBaseSceneLayer.cpp in Sources */, 15A3D9B11682F7F9002FB0C5 /* cpSweep1D.c in Sources */, + 15C0B588196D412F007F909D /* ImageViewReader.cpp in Sources */, 15A3D9B21682F7F9002FB0C5 /* cpVect.c in Sources */, 15A3DA311682F826002FB0C5 /* CCBAnimationManager.cpp in Sources */, + 15C0B557196D412F007F909D /* CCProcessBase.cpp in Sources */, 15A3DA321682F826002FB0C5 /* CCBFileLoader.cpp in Sources */, + 8974E3A61A43043600D343A3 /* RPGMapChoicePlayerMenuLayer.cpp in Sources */, 15A3DA331682F826002FB0C5 /* CCBKeyframe.cpp in Sources */, + 15C0B56F196D412F007F909D /* UILayout.cpp in Sources */, + 15C0B566196D412F007F909D /* CCTransformHelp.cpp in Sources */, + 15C0B58A196D412F007F909D /* LabelBMFontReader.cpp in Sources */, + 15C0B54E196D412F007F909D /* CCActionManager.cpp in Sources */, 15A3DA341682F826002FB0C5 /* CCBReader.cpp in Sources */, + 15C0B574196D412F007F909D /* UITouchGroup.cpp in Sources */, + 8974E3A51A43043600D343A3 /* RPGLoadingSceneLayer.cpp in Sources */, 15A3DA351682F826002FB0C5 /* CCBSequence.cpp in Sources */, 15A3DA361682F826002FB0C5 /* CCBSequenceProperty.cpp in Sources */, - 46513EB1187BFBA200B5ABE1 /* UITouchGroup.cpp in Sources */, 15A3DA371682F826002FB0C5 /* CCBValue.cpp in Sources */, 15A3DA381682F826002FB0C5 /* CCControlButtonLoader.cpp in Sources */, - 89D364B219570F490050A8E7 /* CppSQLite3.cpp in Sources */, 15A3DA391682F826002FB0C5 /* CCControlLoader.cpp in Sources */, 15A3DA3A1682F826002FB0C5 /* CCData.cpp in Sources */, - 8949466D19570BD700487A09 /* RPGData.cpp in Sources */, - 298B29BC18D0668400C1920F /* ImageViewReader.cpp in Sources */, 15A3DA3B1682F826002FB0C5 /* CCLabelBMFontLoader.cpp in Sources */, + 15C0B556196D412F007F909D /* CCArmatureAnimation.cpp in Sources */, + 15C0B568196D412F007F909D /* CCUtilMath.cpp in Sources */, 15A3DA3C1682F826002FB0C5 /* CCLabelTTFLoader.cpp in Sources */, + 15C0B572196D412F007F909D /* CocosGUI.cpp in Sources */, 15A3DA3D1682F826002FB0C5 /* CCLayerColorLoader.cpp in Sources */, - 8949467619570BD700487A09 /* RPGMapRoleSprite.cpp in Sources */, + 15C0B589196D412F007F909D /* LabelAtlasReader.cpp in Sources */, 15A3DA3E1682F826002FB0C5 /* CCLayerGradientLoader.cpp in Sources */, + 15C0B595196D412F007F909D /* TriggerBase.cpp in Sources */, 15A3DA3F1682F826002FB0C5 /* CCLayerLoader.cpp in Sources */, 15A3DA401682F826002FB0C5 /* CCMenuItemImageLoader.cpp in Sources */, - 375BD5101868454E0024609E /* CCActionFrameEasing.cpp in Sources */, - 298B29C318D0668400C1920F /* PageViewReader.cpp in Sources */, 15A3DA411682F826002FB0C5 /* CCMenuItemLoader.cpp in Sources */, - 89D364B819570F490050A8E7 /* Indenter.cpp in Sources */, + 8974E3C01A4304A300D343A3 /* Convert.cpp in Sources */, 15A3DA421682F826002FB0C5 /* CCNode+CCBRelativePositioning.cpp in Sources */, 15A3DA431682F826002FB0C5 /* CCNodeLoader.cpp in Sources */, 15A3DA441682F826002FB0C5 /* CCNodeLoaderLibrary.cpp in Sources */, - 298B29C118D0668400C1920F /* ListViewReader.cpp in Sources */, 15A3DA451682F826002FB0C5 /* CCParticleSystemQuadLoader.cpp in Sources */, + 15C0B594196D412F007F909D /* ObjectFactory.cpp in Sources */, + 15C0B56B196D412F007F909D /* CCComController.cpp in Sources */, + 15C0B56D196D412F007F909D /* CCInputDelegate.cpp in Sources */, 15A3DA461682F826002FB0C5 /* CCScale9SpriteLoader.cpp in Sources */, 15A3DA471682F826002FB0C5 /* CCScrollViewLoader.cpp in Sources */, - 8949467A19570BD700487A09 /* RPGResultsLogic.cpp in Sources */, 15A3DA481682F826002FB0C5 /* CCSpriteLoader.cpp in Sources */, + 15C0B578196D412F007F909D /* UIButton.cpp in Sources */, 15A3DA491682F826002FB0C5 /* CCControl.cpp in Sources */, 15A3DA4A1682F826002FB0C5 /* CCControlButton.cpp in Sources */, 15A3DA4B1682F826002FB0C5 /* CCControlColourPicker.cpp in Sources */, - 298B29BF18D0668400C1920F /* LabelReader.cpp in Sources */, 15A3DA4C1682F826002FB0C5 /* CCControlHuePicker.cpp in Sources */, - 375BD50F1868454E0024609E /* CCActionFrame.cpp in Sources */, + 8974E3A31A43043600D343A3 /* RPGData.cpp in Sources */, + 15C0B55E196D412F007F909D /* CCDisplayFactory.cpp in Sources */, 15A3DA4D1682F826002FB0C5 /* CCControlPotentiometer.cpp in Sources */, 15A3DA4E1682F826002FB0C5 /* CCControlSaturationBrightnessPicker.cpp in Sources */, 15A3DA4F1682F826002FB0C5 /* CCControlSlider.cpp in Sources */, + 15C0B591196D412F007F909D /* SliderReader.cpp in Sources */, + 15C0B592196D412F007F909D /* TextFieldReader.cpp in Sources */, + 15C0B57F196D412F007F909D /* UIRichText.cpp in Sources */, + 15C0B583196D412F007F909D /* DictionaryHelper.cpp in Sources */, 15A3DA501682F826002FB0C5 /* CCControlStepper.cpp in Sources */, + 15C0B550196D412F007F909D /* CCActionObject.cpp in Sources */, 15A3DA511682F826002FB0C5 /* CCControlSwitch.cpp in Sources */, - 298B29C718D0668400C1920F /* WidgetReader.cpp in Sources */, 15A3DA521682F826002FB0C5 /* CCControlUtils.cpp in Sources */, - 375BD4C41868411B0024609E /* TriggerBase.cpp in Sources */, - 298B29BB18D0668400C1920F /* CheckBoxReader.cpp in Sources */, 15A3DA531682F826002FB0C5 /* CCInvocation.cpp in Sources */, + 15C0B54C196D412F007F909D /* CCActionFrame.cpp in Sources */, 15A3DA541682F826002FB0C5 /* CCScale9Sprite.cpp in Sources */, - 8949466E19570BD700487A09 /* RPGDialogLayer.cpp in Sources */, - 8949467519570BD700487A09 /* RPGMapNPCRoleSprite.cpp in Sources */, + 15C0B585196D412F007F909D /* SceneReader.cpp in Sources */, 15A3DA551682F826002FB0C5 /* CCEditBox.cpp in Sources */, + 15C0B577196D412F007F909D /* UIScrollView.cpp in Sources */, 15A3DA571682F826002FB0C5 /* CCEditBoxImplIOS.mm in Sources */, - 8949467019570BD700487A09 /* RPGMapChoicePlayerMenuLayer.cpp in Sources */, 15A3DA591682F826002FB0C5 /* CCScrollView.cpp in Sources */, 15A3DA5A1682F826002FB0C5 /* CCSorting.cpp in Sources */, 15A3DA5B1682F826002FB0C5 /* CCTableView.cpp in Sources */, 15A3DA5C1682F826002FB0C5 /* CCTableViewCell.cpp in Sources */, - 8949466619570BD700487A09 /* OzgJoystickLayer.cpp in Sources */, 15A3DA5D1682F826002FB0C5 /* HttpClient.cpp in Sources */, + 15C0B558196D412F007F909D /* CCTween.cpp in Sources */, 15A3DA5E1682F826002FB0C5 /* CCPhysicsDebugNode.cpp in Sources */, - 375BD5131868454E0024609E /* CCActionObject.cpp in Sources */, + 15C0B584196D412F007F909D /* GUIReader.cpp in Sources */, 15A3DA5F1682F826002FB0C5 /* CCPhysicsSprite.cpp in Sources */, + 15C0B58F196D412F007F909D /* PageViewReader.cpp in Sources */, + 15C0B563196D412F007F909D /* CCArmatureDefine.cpp in Sources */, + 15C0B55D196D412F007F909D /* CCDecorativeDisplay.cpp in Sources */, 15A3DAEB1682F8A6002FB0C5 /* CDAudioManager.m in Sources */, 15A3DAEC1682F8A6002FB0C5 /* CDOpenALSupport.m in Sources */, 15A3DAED1682F8A6002FB0C5 /* CocosDenshion.m in Sources */, 15A3DAEE1682F8A6002FB0C5 /* SimpleAudioEngine.mm in Sources */, + 15C0B554196D412F007F909D /* CCNodeReader.cpp in Sources */, + 15C0B551196D412F007F909D /* CCActionTimeline.cpp in Sources */, 15A3DAEF1682F8A6002FB0C5 /* SimpleAudioEngine_objc.m in Sources */, - 38FA2EB3194EA58000FF2BE4 /* CCNodeReader.cpp in Sources */, 1A27573F1697CF2B00504026 /* CCEditBoxImplAndroid.cpp in Sources */, + 15C0B58D196D412F007F909D /* ListViewReader.cpp in Sources */, 1AFAF8B716D35DE700DB1158 /* AppDelegate.cpp in Sources */, + 15C0B57E196D412F007F909D /* UILoadingBar.cpp in Sources */, + 8974E3AA1A43043600D343A3 /* RPGMapMenuLayer.cpp in Sources */, 1AC3624916D4A1E8000847F2 /* AppController.mm in Sources */, 1AC3624B16D4A1E8000847F2 /* main.m in Sources */, 1AFCDA8216D4A25900906EA6 /* RootViewController.mm in Sources */, + 8974E3A21A43043600D343A3 /* RPGComputingResults.cpp in Sources */, + 15C0B564196D412F007F909D /* CCDataReaderHelper.cpp in Sources */, + 8974E39F1A43043600D343A3 /* RPGBattleMonsterSprite.cpp in Sources */, + 15C0B579196D412F007F909D /* UICheckBox.cpp in Sources */, 1A8F3B6E175E05DA00049216 /* Animation.cpp in Sources */, 1A8F3B6F175E05DA00049216 /* AnimationState.cpp in Sources */, + 15C0B58C196D412F007F909D /* LayoutReader.cpp in Sources */, 1A8F3B70175E05DA00049216 /* AnimationStateData.cpp in Sources */, 1A8F3B71175E05DA00049216 /* Atlas.cpp in Sources */, 1A8F3B72175E05DA00049216 /* AtlasAttachmentLoader.cpp in Sources */, - 89D364BB19570F490050A8E7 /* Value.cpp in Sources */, - 298B29C618D0668400C1920F /* TextFieldReader.cpp in Sources */, 1A8F3B73175E05DA00049216 /* Attachment.cpp in Sources */, 1A8F3B74175E05DA00049216 /* AttachmentLoader.cpp in Sources */, 1A8F3B75175E05DA00049216 /* Bone.cpp in Sources */, 1A8F3B76175E05DA00049216 /* BoneData.cpp in Sources */, 1A8F3B77175E05DA00049216 /* CCSkeleton.cpp in Sources */, 1A8F3B78175E05DA00049216 /* CCSkeletonAnimation.cpp in Sources */, - 375BD5121868454E0024609E /* CCActionNode.cpp in Sources */, + 15C0B567196D412F007F909D /* CCTweenFunction.cpp in Sources */, + 15C0B58B196D412F007F909D /* LabelReader.cpp in Sources */, 1A8F3B79175E05DA00049216 /* extension.cpp in Sources */, + 15C0B597196D412F007F909D /* TriggerObj.cpp in Sources */, 1A8F3B7A175E05DA00049216 /* Json.cpp in Sources */, 1A8F3B7B175E05DA00049216 /* RegionAttachment.cpp in Sources */, + 15C0B54D196D412F007F909D /* CCActionFrameEasing.cpp in Sources */, 1A8F3B7C175E05DA00049216 /* Skeleton.cpp in Sources */, - 8949466519570BD700487A09 /* OzgFileUtility.cpp in Sources */, 1A8F3B7D175E05DA00049216 /* SkeletonData.cpp in Sources */, 1A8F3B7E175E05DA00049216 /* SkeletonJson.cpp in Sources */, + 15C0B581196D412F007F909D /* UITextField.cpp in Sources */, + 8974E3B51A43045000D343A3 /* CppSQLite3.cpp in Sources */, 1A8F3B7F175E05DA00049216 /* Skin.cpp in Sources */, - 298B29BE18D0668400C1920F /* LabelBMFontReader.cpp in Sources */, 1A8F3B80175E05DA00049216 /* Slot.cpp in Sources */, 1A8F3B81175E05DA00049216 /* SlotData.cpp in Sources */, 1A8F3B82175E05DA00049216 /* spine-cocos2dx.cpp in Sources */, - 298B29C418D0668400C1920F /* ScrollViewReader.cpp in Sources */, - 38FA2EB1194EA58000FF2BE4 /* CCActionTimelineCache.cpp in Sources */, + 8974E3B01A43043600D343A3 /* RPGResultsLogic.cpp in Sources */, + 15C0B565196D412F007F909D /* CCSpriteFrameCacheHelper.cpp in Sources */, + 15C0B576196D412F007F909D /* UIPageView.cpp in Sources */, 1AB87035175E0A84005D39BF /* WebSocket.cpp in Sources */, - 375BD4C51868411B0024609E /* TriggerMng.cpp in Sources */, 1A9CE8781765A12C000E3062 /* AssetsManager.cpp in Sources */, - 379BB99A17F03F3700829B88 /* CCArmatureAnimation.cpp in Sources */, - 89D364BA19570F490050A8E7 /* SolidusEscaper.cpp in Sources */, - 379BB99B17F03F3700829B88 /* CCProcessBase.cpp in Sources */, - 379BB99C17F03F3700829B88 /* CCTween.cpp in Sources */, - 379BB99D17F03F3700829B88 /* CCArmature.cpp in Sources */, - 8949467819570BD700487A09 /* RPGMapSkillMenuLayer.cpp in Sources */, - 8949467119570BD700487A09 /* RPGMapDialogLayer.cpp in Sources */, - 379BB99E17F03F3700829B88 /* CCBone.cpp in Sources */, - 379BB99F17F03F3700829B88 /* CCDatas.cpp in Sources */, - 379BB9A017F03F3700829B88 /* CCBatchNode.cpp in Sources */, - 379BB9A117F03F3700829B88 /* CCDecorativeDisplay.cpp in Sources */, - 379BB9A217F03F3700829B88 /* CCDisplayFactory.cpp in Sources */, - 379BB9A317F03F3700829B88 /* CCDisplayManager.cpp in Sources */, - 38FA2EB2194EA58000FF2BE4 /* CCFrame.cpp in Sources */, - 379BB9A417F03F3700829B88 /* CCSkin.cpp in Sources */, - 298B29C518D0668400C1920F /* SliderReader.cpp in Sources */, - 379BB9A517F03F3700829B88 /* CCColliderDetector.cpp in Sources */, - 379BB9A617F03F3700829B88 /* CCArmatureDataManager.cpp in Sources */, - 8949466B19570BD700487A09 /* RPGBattleSceneLayer.cpp in Sources */, - 379BB9A717F03F3700829B88 /* CCArmatureDefine.cpp in Sources */, - 8949467319570BD700487A09 /* RPGMapItemsMenuLayer.cpp in Sources */, - 379BB9A817F03F3700829B88 /* CCDataReaderHelper.cpp in Sources */, - 379BB9A917F03F3700829B88 /* CCSpriteFrameCacheHelper.cpp in Sources */, - 379BB9AA17F03F3700829B88 /* CCTransformHelp.cpp in Sources */, - 379BB9AB17F03F3700829B88 /* CCTweenFunction.cpp in Sources */, - 379BB9AC17F03F3700829B88 /* CCUtilMath.cpp in Sources */, - 379BB9AD17F03F3700829B88 /* CCComAttribute.cpp in Sources */, - 379BB9AE17F03F3700829B88 /* CCComAudio.cpp in Sources */, - 379BB9AF17F03F3700829B88 /* CCComController.cpp in Sources */, - 379BB9B017F03F3700829B88 /* CCComRender.cpp in Sources */, - 379BB9B117F03F3700829B88 /* CCInputDelegate.cpp in Sources */, - 379BB9B317F03F3700829B88 /* UIWidget.cpp in Sources */, - 379BB9B417F03F3700829B88 /* UILayout.cpp in Sources */, - 89D364B919570F490050A8E7 /* Object.cpp in Sources */, - 379BB9B617F03F3700829B88 /* UILayoutParameter.cpp in Sources */, - 379BB9B717F03F3700829B88 /* UILayoutDefine.cpp in Sources */, - 379BB9B817F03F3700829B88 /* CocosGUI.cpp in Sources */, - 379BB9B917F03F3700829B88 /* UIHelper.cpp in Sources */, - 379BB9BD17F03F3700829B88 /* UIListView.cpp in Sources */, - 379BB9BE17F03F3700829B88 /* UIPageView.cpp in Sources */, - 379BB9BF17F03F3700829B88 /* UIScrollView.cpp in Sources */, - 379BB9C017F03F3700829B88 /* UIButton.cpp in Sources */, - 375BD50E1868454E0024609E /* CCActionEaseEx.cpp in Sources */, - 379BB9C117F03F3700829B88 /* UICheckBox.cpp in Sources */, - 379BB9C217F03F3700829B88 /* UIImageView.cpp in Sources */, - 379BB9C317F03F3700829B88 /* UILabel.cpp in Sources */, - 379BB9C417F03F3700829B88 /* UILabelAtlas.cpp in Sources */, - 8949466719570BD700487A09 /* RPGBaseSceneLayer.cpp in Sources */, - 379BB9C517F03F3700829B88 /* UILabelBMFont.cpp in Sources */, - 379BB9C617F03F3700829B88 /* UILoadingBar.cpp in Sources */, - 379BB9C717F03F3700829B88 /* UISlider.cpp in Sources */, - 379BB9C917F03F3700829B88 /* UITextField.cpp in Sources */, - 379BB9CB17F03F3700829B88 /* DictionaryHelper.cpp in Sources */, - 379BB9D317F03F3700829B88 /* GUIReader.cpp in Sources */, - 379BB9D417F03F3700829B88 /* SceneReader.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3019,6 +2968,7 @@ isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; + ARCHS = "$(ARCHS_STANDARD)"; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; COPY_PHASE_STRIP = NO; @@ -3050,7 +3000,7 @@ "\"$(SRCROOT)/../libs/JsonBox/include\"", ); INFOPLIST_FILE = Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; + IPHONEOS_DEPLOYMENT_TARGET = 5.1.1; LIBRARY_SEARCH_PATHS = ( "\"$(SRCROOT)/../../../cocos2dx/platform/third_party/ios/libraries\"", "\"$(SRCROOT)/../../../external/libwebsockets/ios/lib\"", @@ -3062,7 +3012,7 @@ SDKROOT = iphoneos; TARGETED_DEVICE_FAMILY = "1,2"; USER_HEADER_SEARCH_PATHS = ""; - VALID_ARCHS = "armv6 armv7 i386"; + VALID_ARCHS = "arm64 armv7 i386"; }; name = Debug; }; @@ -3070,6 +3020,7 @@ isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; + ARCHS = "$(ARCHS_STANDARD)"; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; COPY_PHASE_STRIP = YES; @@ -3099,7 +3050,7 @@ "\"$(SRCROOT)/../libs/JsonBox/include\"", ); INFOPLIST_FILE = Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; + IPHONEOS_DEPLOYMENT_TARGET = 5.1.1; LIBRARY_SEARCH_PATHS = ( "\"$(SRCROOT)/../../../cocos2dx/platform/third_party/ios/libraries\"", "\"$(SRCROOT)/../../../external/libwebsockets/ios/lib\"", @@ -3111,6 +3062,7 @@ TARGETED_DEVICE_FAMILY = "1,2"; USER_HEADER_SEARCH_PATHS = ""; VALIDATE_PRODUCT = YES; + VALID_ARCHS = "arm64 armv7 i386"; }; name = Release; }; diff --git a/proj.ios/OzgGameRPG.xcodeproj/project.xcworkspace/xcshareddata/OzgGameRPG.xccheckout b/proj.ios/OzgGameRPG.xcodeproj/project.xcworkspace/xcshareddata/OzgGameRPG.xccheckout index ac289e7..82d2080 100644 --- a/proj.ios/OzgGameRPG.xcodeproj/project.xcworkspace/xcshareddata/OzgGameRPG.xccheckout +++ b/proj.ios/OzgGameRPG.xcodeproj/project.xcworkspace/xcshareddata/OzgGameRPG.xccheckout @@ -5,7 +5,7 @@ IDESourceControlProjectFavoriteDictionaryKey IDESourceControlProjectIdentifier - BE783F00-5C7D-4F2B-BBA1-1933C415D2DE + CC3C8DFB-3D92-4C9E-B18F-4B4381412266 IDESourceControlProjectName OzgGameRPG IDESourceControlProjectOriginsDictionary @@ -14,7 +14,7 @@ https://github.com/ouzhigang/OzgGameRPG.git IDESourceControlProjectPath - proj.ios/OzgGameRPG.xcodeproj/project.xcworkspace + proj.ios/OzgGameRPG.xcodeproj IDESourceControlProjectRelativeInstallPathDictionary C98AD18A18B5A6907222BB73E0D52A8C8449EF4A diff --git a/proj.ios/OzgGameRPG.xcodeproj/project.xcworkspace/xcuserdata/ouzhigang.xcuserdatad/UserInterfaceState.xcuserstate b/proj.ios/OzgGameRPG.xcodeproj/project.xcworkspace/xcuserdata/ouzhigang.xcuserdatad/UserInterfaceState.xcuserstate index 894c439..560911c 100644 Binary files a/proj.ios/OzgGameRPG.xcodeproj/project.xcworkspace/xcuserdata/ouzhigang.xcuserdatad/UserInterfaceState.xcuserstate and b/proj.ios/OzgGameRPG.xcodeproj/project.xcworkspace/xcuserdata/ouzhigang.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/proj.ios/OzgGameRPG.xcodeproj/xcuserdata/ouzhigang.xcuserdatad/xcschemes/OzgGameRPG.xcscheme b/proj.ios/OzgGameRPG.xcodeproj/xcuserdata/ouzhigang.xcuserdatad/xcschemes/OzgGameRPG.xcscheme index b0d60ce..4ccd508 100644 --- a/proj.ios/OzgGameRPG.xcodeproj/xcuserdata/ouzhigang.xcuserdatad/xcschemes/OzgGameRPG.xcscheme +++ b/proj.ios/OzgGameRPG.xcodeproj/xcuserdata/ouzhigang.xcuserdatad/xcschemes/OzgGameRPG.xcscheme @@ -1,6 +1,6 @@ OzgGameRPG.xcscheme orderHint - 1 + 0 SuppressBuildableAutocreation diff --git a/proj.mac/AppController.mm b/proj.mac/AppController.mm index ced40ca..159249f 100644 --- a/proj.mac/AppController.mm +++ b/proj.mac/AppController.mm @@ -58,7 +58,7 @@ // set window parameters [window becomeFirstResponder]; [window setContentView:glView]; - [window setTitle:@"OzgGameRPG"]; + [window setTitle:@"HelloCpp"]; [window makeKeyAndOrderFront:self]; [window setAcceptsMouseMovedEvents:NO]; diff --git a/proj.mac/OzgGameRPG.xcodeproj/project.pbxproj b/proj.mac/OzgGameRPG.xcodeproj/project.pbxproj index 71e22d9..6a1dd2e 100644 --- a/proj.mac/OzgGameRPG.xcodeproj/project.pbxproj +++ b/proj.mac/OzgGameRPG.xcodeproj/project.pbxproj @@ -250,164 +250,163 @@ 41BC70E715BF81A5006A0A6C /* Icon.icns in Resources */ = {isa = PBXBuildFile; fileRef = 41BC70E015BF81A5006A0A6C /* Icon.icns */; }; 41BC70E815BF81A5006A0A6C /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 41BC70E115BF81A5006A0A6C /* main.m */; }; 43B91F091949BB0500F7F815 /* CocoLoader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43B91F071949BB0500F7F815 /* CocoLoader.cpp */; }; - 89419B8D1957009700BFCA27 /* CppSQLite3.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89419B731957009700BFCA27 /* CppSQLite3.cpp */; }; - 89419B8E1957009700BFCA27 /* sn.txt in Resources */ = {isa = PBXBuildFile; fileRef = 89419B831957009700BFCA27 /* sn.txt */; }; - 89419B8F1957009700BFCA27 /* Array.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89419B851957009700BFCA27 /* Array.cpp */; }; - 89419B901957009700BFCA27 /* Convert.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89419B861957009700BFCA27 /* Convert.cpp */; }; - 89419B911957009700BFCA27 /* Escaper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89419B871957009700BFCA27 /* Escaper.cpp */; }; - 89419B921957009700BFCA27 /* IndentCanceller.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89419B881957009700BFCA27 /* IndentCanceller.cpp */; }; - 89419B931957009700BFCA27 /* Indenter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89419B891957009700BFCA27 /* Indenter.cpp */; }; - 89419B941957009700BFCA27 /* Object.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89419B8A1957009700BFCA27 /* Object.cpp */; }; - 89419B951957009700BFCA27 /* SolidusEscaper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89419B8B1957009700BFCA27 /* SolidusEscaper.cpp */; }; - 89419B961957009700BFCA27 /* Value.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89419B8C1957009700BFCA27 /* Value.cpp */; }; - 89419C001957012100BFCA27 /* joystick.plist in Resources */ = {isa = PBXBuildFile; fileRef = 89419BD31957012100BFCA27 /* joystick.plist */; }; - 89419C011957012100BFCA27 /* joystick.png in Resources */ = {isa = PBXBuildFile; fileRef = 89419BD41957012100BFCA27 /* joystick.png */; }; - 89419C021957012100BFCA27 /* main.plist in Resources */ = {isa = PBXBuildFile; fileRef = 89419BD51957012100BFCA27 /* main.plist */; }; - 89419C031957012100BFCA27 /* main.png in Resources */ = {isa = PBXBuildFile; fileRef = 89419BD61957012100BFCA27 /* main.png */; }; - 89419C041957012100BFCA27 /* map_01.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 89419BD71957012100BFCA27 /* map_01.tmx */; }; - 89419C051957012100BFCA27 /* map_02.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 89419BD81957012100BFCA27 /* map_02.tmx */; }; - 89419C061957012100BFCA27 /* map_03.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 89419BD91957012100BFCA27 /* map_03.tmx */; }; - 89419C071957012100BFCA27 /* map_menu1_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 89419BDA1957012100BFCA27 /* map_menu1_style1.tmx */; }; - 89419C081957012100BFCA27 /* map_menu1_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 89419BDB1957012100BFCA27 /* map_menu1_style2.tmx */; }; - 89419C091957012100BFCA27 /* map_menu1_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 89419BDC1957012100BFCA27 /* map_menu1_style3.tmx */; }; - 89419C0A1957012100BFCA27 /* map_menu2_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 89419BDD1957012100BFCA27 /* map_menu2_style1.tmx */; }; - 89419C0B1957012100BFCA27 /* map_menu2_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 89419BDE1957012100BFCA27 /* map_menu2_style2.tmx */; }; - 89419C0C1957012100BFCA27 /* map_menu2_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 89419BDF1957012100BFCA27 /* map_menu2_style3.tmx */; }; - 89419C0D1957012100BFCA27 /* map_menu3_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 89419BE01957012100BFCA27 /* map_menu3_style1.tmx */; }; - 89419C0E1957012100BFCA27 /* map_menu3_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 89419BE11957012100BFCA27 /* map_menu3_style2.tmx */; }; - 89419C0F1957012100BFCA27 /* map_menu3_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 89419BE21957012100BFCA27 /* map_menu3_style3.tmx */; }; - 89419C101957012100BFCA27 /* map_menu4_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 89419BE31957012100BFCA27 /* map_menu4_style1.tmx */; }; - 89419C111957012100BFCA27 /* map_menu4_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 89419BE41957012100BFCA27 /* map_menu4_style2.tmx */; }; - 89419C121957012100BFCA27 /* map_menu4_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 89419BE51957012100BFCA27 /* map_menu4_style3.tmx */; }; - 89419C131957012100BFCA27 /* map_menu5_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 89419BE61957012100BFCA27 /* map_menu5_style1.tmx */; }; - 89419C141957012100BFCA27 /* map_menu5_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 89419BE71957012100BFCA27 /* map_menu5_style2.tmx */; }; - 89419C151957012100BFCA27 /* map_menu5_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 89419BE81957012100BFCA27 /* map_menu5_style3.tmx */; }; - 89419C161957012100BFCA27 /* map.png in Resources */ = {isa = PBXBuildFile; fileRef = 89419BE91957012100BFCA27 /* map.png */; }; - 89419C171957012100BFCA27 /* monsters.plist in Resources */ = {isa = PBXBuildFile; fileRef = 89419BEA1957012100BFCA27 /* monsters.plist */; }; - 89419C181957012100BFCA27 /* monsters.png in Resources */ = {isa = PBXBuildFile; fileRef = 89419BEB1957012100BFCA27 /* monsters.png */; }; - 89419C191957012100BFCA27 /* scene_battle_cns.plist in Resources */ = {isa = PBXBuildFile; fileRef = 89419BEC1957012100BFCA27 /* scene_battle_cns.plist */; }; - 89419C1A1957012100BFCA27 /* scene_loading_cns.plist in Resources */ = {isa = PBXBuildFile; fileRef = 89419BED1957012100BFCA27 /* scene_loading_cns.plist */; }; - 89419C1B1957012100BFCA27 /* scene_map_cns.plist in Resources */ = {isa = PBXBuildFile; fileRef = 89419BEE1957012100BFCA27 /* scene_map_cns.plist */; }; - 89419C1C1957012100BFCA27 /* scene_start_cns.plist in Resources */ = {isa = PBXBuildFile; fileRef = 89419BEF1957012100BFCA27 /* scene_start_cns.plist */; }; - 89419C1D1957012100BFCA27 /* select_player_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 89419BF01957012100BFCA27 /* select_player_style1.tmx */; }; - 89419C1E1957012100BFCA27 /* select_player_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 89419BF11957012100BFCA27 /* select_player_style2.tmx */; }; - 89419C1F1957012100BFCA27 /* select_player_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 89419BF21957012100BFCA27 /* select_player_style3.tmx */; }; - 89419C201957012100BFCA27 /* shop_list_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 89419BF31957012100BFCA27 /* shop_list_style1.tmx */; }; - 89419C211957012100BFCA27 /* shop_list_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 89419BF41957012100BFCA27 /* shop_list_style2.tmx */; }; - 89419C221957012100BFCA27 /* shop_list_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 89419BF51957012100BFCA27 /* shop_list_style3.tmx */; }; - 89419C231957012100BFCA27 /* shop_menu_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 89419BF61957012100BFCA27 /* shop_menu_style1.tmx */; }; - 89419C241957012100BFCA27 /* shop_menu_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 89419BF71957012100BFCA27 /* shop_menu_style2.tmx */; }; - 89419C251957012100BFCA27 /* shop_menu_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 89419BF81957012100BFCA27 /* shop_menu_style3.tmx */; }; - 89419C261957012100BFCA27 /* skill_cure.plist in Resources */ = {isa = PBXBuildFile; fileRef = 89419BF91957012100BFCA27 /* skill_cure.plist */; }; - 89419C271957012100BFCA27 /* skill_fire.plist in Resources */ = {isa = PBXBuildFile; fileRef = 89419BFA1957012100BFCA27 /* skill_fire.plist */; }; - 89419C281957012100BFCA27 /* start_bg.png in Resources */ = {isa = PBXBuildFile; fileRef = 89419BFB1957012100BFCA27 /* start_bg.png */; }; - 89419C291957012100BFCA27 /* use_item.plist in Resources */ = {isa = PBXBuildFile; fileRef = 89419BFC1957012100BFCA27 /* use_item.plist */; }; - 89419C2A1957012100BFCA27 /* Window_a_00.png in Resources */ = {isa = PBXBuildFile; fileRef = 89419BFD1957012100BFCA27 /* Window_a_00.png */; }; - 89419C2B1957012100BFCA27 /* Window_b_00.png in Resources */ = {isa = PBXBuildFile; fileRef = 89419BFE1957012100BFCA27 /* Window_b_00.png */; }; - 89419C2C1957012100BFCA27 /* Window_c_00.png in Resources */ = {isa = PBXBuildFile; fileRef = 89419BFF1957012100BFCA27 /* Window_c_00.png */; }; - 89419C5D1957013800BFCA27 /* attack_damage.plist in Resources */ = {isa = PBXBuildFile; fileRef = 89419C2D1957013800BFCA27 /* attack_damage.plist */; }; - 89419C5E1957013800BFCA27 /* attack_damage.png in Resources */ = {isa = PBXBuildFile; fileRef = 89419C2E1957013800BFCA27 /* attack_damage.png */; }; - 89419C5F1957013800BFCA27 /* attack1.ExportJson in Resources */ = {isa = PBXBuildFile; fileRef = 89419C2F1957013800BFCA27 /* attack1.ExportJson */; }; - 89419C601957013800BFCA27 /* attack2.ExportJson in Resources */ = {isa = PBXBuildFile; fileRef = 89419C301957013800BFCA27 /* attack2.ExportJson */; }; - 89419C611957013800BFCA27 /* attack3.ExportJson in Resources */ = {isa = PBXBuildFile; fileRef = 89419C311957013800BFCA27 /* attack3.ExportJson */; }; - 89419C621957013800BFCA27 /* attack4.ExportJson in Resources */ = {isa = PBXBuildFile; fileRef = 89419C321957013800BFCA27 /* attack4.ExportJson */; }; - 89419C631957013800BFCA27 /* attack10.plist in Resources */ = {isa = PBXBuildFile; fileRef = 89419C331957013800BFCA27 /* attack10.plist */; }; - 89419C641957013800BFCA27 /* attack10.png in Resources */ = {isa = PBXBuildFile; fileRef = 89419C341957013800BFCA27 /* attack10.png */; }; - 89419C651957013800BFCA27 /* attack20.plist in Resources */ = {isa = PBXBuildFile; fileRef = 89419C351957013800BFCA27 /* attack20.plist */; }; - 89419C661957013800BFCA27 /* attack20.png in Resources */ = {isa = PBXBuildFile; fileRef = 89419C361957013800BFCA27 /* attack20.png */; }; - 89419C671957013800BFCA27 /* attack30.plist in Resources */ = {isa = PBXBuildFile; fileRef = 89419C371957013800BFCA27 /* attack30.plist */; }; - 89419C681957013800BFCA27 /* attack30.png in Resources */ = {isa = PBXBuildFile; fileRef = 89419C381957013800BFCA27 /* attack30.png */; }; - 89419C691957013800BFCA27 /* attack40.plist in Resources */ = {isa = PBXBuildFile; fileRef = 89419C391957013800BFCA27 /* attack40.plist */; }; - 89419C6A1957013800BFCA27 /* attack40.png in Resources */ = {isa = PBXBuildFile; fileRef = 89419C3A1957013800BFCA27 /* attack40.png */; }; - 89419C6B1957013800BFCA27 /* audio_battle_attack1.wav in Resources */ = {isa = PBXBuildFile; fileRef = 89419C3B1957013800BFCA27 /* audio_battle_attack1.wav */; }; - 89419C6C1957013800BFCA27 /* audio_battle_attack2.wav in Resources */ = {isa = PBXBuildFile; fileRef = 89419C3C1957013800BFCA27 /* audio_battle_attack2.wav */; }; - 89419C6D1957013800BFCA27 /* audio_battle_end.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = 89419C3D1957013800BFCA27 /* audio_battle_end.mp3 */; }; - 89419C6E1957013800BFCA27 /* audio_battle_lose.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = 89419C3E1957013800BFCA27 /* audio_battle_lose.mp3 */; }; - 89419C6F1957013800BFCA27 /* audio_battle_menu.wav in Resources */ = {isa = PBXBuildFile; fileRef = 89419C3F1957013800BFCA27 /* audio_battle_menu.wav */; }; - 89419C701957013800BFCA27 /* audio_battle_start.wav in Resources */ = {isa = PBXBuildFile; fileRef = 89419C401957013800BFCA27 /* audio_battle_start.wav */; }; - 89419C711957013800BFCA27 /* audio_battle.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = 89419C411957013800BFCA27 /* audio_battle.mp3 */; }; - 89419C721957013800BFCA27 /* audio_effect_btn.wav in Resources */ = {isa = PBXBuildFile; fileRef = 89419C421957013800BFCA27 /* audio_effect_btn.wav */; }; - 89419C731957013800BFCA27 /* audio_inn.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = 89419C431957013800BFCA27 /* audio_inn.mp3 */; }; - 89419C741957013800BFCA27 /* audio_map_01.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = 89419C441957013800BFCA27 /* audio_map_01.mp3 */; }; - 89419C751957013800BFCA27 /* audio_map_02.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = 89419C451957013800BFCA27 /* audio_map_02.mp3 */; }; - 89419C761957013800BFCA27 /* audio_map_03.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = 89419C461957013800BFCA27 /* audio_map_03.mp3 */; }; - 89419C771957013800BFCA27 /* audio_skill_cure.wav in Resources */ = {isa = PBXBuildFile; fileRef = 89419C471957013800BFCA27 /* audio_skill_cure.wav */; }; - 89419C781957013800BFCA27 /* audio_skill_fire.wav in Resources */ = {isa = PBXBuildFile; fileRef = 89419C481957013800BFCA27 /* audio_skill_fire.wav */; }; - 89419C791957013800BFCA27 /* audio_start_btn.wav in Resources */ = {isa = PBXBuildFile; fileRef = 89419C491957013800BFCA27 /* audio_start_btn.wav */; }; - 89419C7A1957013800BFCA27 /* audio_start.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = 89419C4A1957013800BFCA27 /* audio_start.mp3 */; }; - 89419C7B1957013800BFCA27 /* audio_use_items.wav in Resources */ = {isa = PBXBuildFile; fileRef = 89419C4B1957013800BFCA27 /* audio_use_items.wav */; }; - 89419C7C1957013800BFCA27 /* battle_battlemenu_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 89419C4C1957013800BFCA27 /* battle_battlemenu_style1.tmx */; }; - 89419C7D1957013800BFCA27 /* battle_battlemenu_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 89419C4D1957013800BFCA27 /* battle_battlemenu_style2.tmx */; }; - 89419C7E1957013800BFCA27 /* battle_battlemenu_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 89419C4E1957013800BFCA27 /* battle_battlemenu_style3.tmx */; }; - 89419C7F1957013800BFCA27 /* battle_bg.png in Resources */ = {isa = PBXBuildFile; fileRef = 89419C4F1957013800BFCA27 /* battle_bg.png */; }; - 89419C801957013800BFCA27 /* battle_menu_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 89419C501957013800BFCA27 /* battle_menu_style1.tmx */; }; - 89419C811957013800BFCA27 /* battle_menu_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 89419C511957013800BFCA27 /* battle_menu_style2.tmx */; }; - 89419C821957013800BFCA27 /* battle_menu_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 89419C521957013800BFCA27 /* battle_menu_style3.tmx */; }; - 89419C831957013800BFCA27 /* battle_msg_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 89419C531957013800BFCA27 /* battle_msg_style1.tmx */; }; - 89419C841957013800BFCA27 /* battle_msg_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 89419C541957013800BFCA27 /* battle_msg_style2.tmx */; }; - 89419C851957013800BFCA27 /* battle_msg_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 89419C551957013800BFCA27 /* battle_msg_style3.tmx */; }; - 89419C861957013800BFCA27 /* battle_select_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 89419C561957013800BFCA27 /* battle_select_style1.tmx */; }; - 89419C871957013800BFCA27 /* battle_select_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 89419C571957013800BFCA27 /* battle_select_style2.tmx */; }; - 89419C881957013800BFCA27 /* battle_select_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 89419C581957013800BFCA27 /* battle_select_style3.tmx */; }; - 89419C891957013800BFCA27 /* db.sys in Resources */ = {isa = PBXBuildFile; fileRef = 89419C591957013800BFCA27 /* db.sys */; }; - 89419C8A1957013800BFCA27 /* dialog_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 89419C5A1957013800BFCA27 /* dialog_style1.tmx */; }; - 89419C8B1957013800BFCA27 /* dialog_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 89419C5B1957013800BFCA27 /* dialog_style2.tmx */; }; - 89419C8C1957013800BFCA27 /* dialog_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 89419C5C1957013800BFCA27 /* dialog_style3.tmx */; }; - 89419CAA1957014400BFCA27 /* actor4_0.png in Resources */ = {isa = PBXBuildFile; fileRef = 89419C8D1957014400BFCA27 /* actor4_0.png */; }; - 89419CAB1957014400BFCA27 /* actor4_1.png in Resources */ = {isa = PBXBuildFile; fileRef = 89419C8E1957014400BFCA27 /* actor4_1.png */; }; - 89419CAC1957014400BFCA27 /* actor4_2.png in Resources */ = {isa = PBXBuildFile; fileRef = 89419C8F1957014400BFCA27 /* actor4_2.png */; }; - 89419CAD1957014400BFCA27 /* actor4_3.png in Resources */ = {isa = PBXBuildFile; fileRef = 89419C901957014400BFCA27 /* actor4_3.png */; }; - 89419CAE1957014400BFCA27 /* actor4_4.png in Resources */ = {isa = PBXBuildFile; fileRef = 89419C911957014400BFCA27 /* actor4_4.png */; }; - 89419CAF1957014400BFCA27 /* actor5_0.png in Resources */ = {isa = PBXBuildFile; fileRef = 89419C921957014400BFCA27 /* actor5_0.png */; }; - 89419CB01957014400BFCA27 /* actor5_1.png in Resources */ = {isa = PBXBuildFile; fileRef = 89419C931957014400BFCA27 /* actor5_1.png */; }; - 89419CB11957014400BFCA27 /* actor5_2.png in Resources */ = {isa = PBXBuildFile; fileRef = 89419C941957014400BFCA27 /* actor5_2.png */; }; - 89419CB21957014400BFCA27 /* actor5_3.png in Resources */ = {isa = PBXBuildFile; fileRef = 89419C951957014400BFCA27 /* actor5_3.png */; }; - 89419CB31957014400BFCA27 /* actor5_4.png in Resources */ = {isa = PBXBuildFile; fileRef = 89419C961957014400BFCA27 /* actor5_4.png */; }; - 89419CB41957014400BFCA27 /* actor7_0.png in Resources */ = {isa = PBXBuildFile; fileRef = 89419C971957014400BFCA27 /* actor7_0.png */; }; - 89419CB51957014400BFCA27 /* actor7_1.png in Resources */ = {isa = PBXBuildFile; fileRef = 89419C981957014400BFCA27 /* actor7_1.png */; }; - 89419CB61957014400BFCA27 /* actor7_2.png in Resources */ = {isa = PBXBuildFile; fileRef = 89419C991957014400BFCA27 /* actor7_2.png */; }; - 89419CB71957014400BFCA27 /* actor7_3.png in Resources */ = {isa = PBXBuildFile; fileRef = 89419C9A1957014400BFCA27 /* actor7_3.png */; }; - 89419CB81957014400BFCA27 /* actor7_4.png in Resources */ = {isa = PBXBuildFile; fileRef = 89419C9B1957014400BFCA27 /* actor7_4.png */; }; - 89419CB91957014400BFCA27 /* actor8_0.png in Resources */ = {isa = PBXBuildFile; fileRef = 89419C9C1957014400BFCA27 /* actor8_0.png */; }; - 89419CBA1957014400BFCA27 /* actor8_1.png in Resources */ = {isa = PBXBuildFile; fileRef = 89419C9D1957014400BFCA27 /* actor8_1.png */; }; - 89419CBB1957014400BFCA27 /* actor8_2.png in Resources */ = {isa = PBXBuildFile; fileRef = 89419C9E1957014400BFCA27 /* actor8_2.png */; }; - 89419CBC1957014400BFCA27 /* actor8_3.png in Resources */ = {isa = PBXBuildFile; fileRef = 89419C9F1957014400BFCA27 /* actor8_3.png */; }; - 89419CBD1957014400BFCA27 /* actor8_4.png in Resources */ = {isa = PBXBuildFile; fileRef = 89419CA01957014400BFCA27 /* actor8_4.png */; }; - 89419CBE1957014400BFCA27 /* actor111.png in Resources */ = {isa = PBXBuildFile; fileRef = 89419CA11957014400BFCA27 /* actor111.png */; }; - 89419CBF1957014400BFCA27 /* actor113.png in Resources */ = {isa = PBXBuildFile; fileRef = 89419CA21957014400BFCA27 /* actor113.png */; }; - 89419CC01957014400BFCA27 /* actor114.png in Resources */ = {isa = PBXBuildFile; fileRef = 89419CA31957014400BFCA27 /* actor114.png */; }; - 89419CC11957014400BFCA27 /* actor115.png in Resources */ = {isa = PBXBuildFile; fileRef = 89419CA41957014400BFCA27 /* actor115.png */; }; - 89419CC21957014400BFCA27 /* actor117.png in Resources */ = {isa = PBXBuildFile; fileRef = 89419CA51957014400BFCA27 /* actor117.png */; }; - 89419CC31957014400BFCA27 /* actor120.png in Resources */ = {isa = PBXBuildFile; fileRef = 89419CA61957014400BFCA27 /* actor120.png */; }; - 89419CC41957014400BFCA27 /* alert_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 89419CA71957014400BFCA27 /* alert_style1.tmx */; }; - 89419CC51957014400BFCA27 /* alert_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 89419CA81957014400BFCA27 /* alert_style2.tmx */; }; - 89419CC61957014400BFCA27 /* alert_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 89419CA91957014400BFCA27 /* alert_style3.tmx */; }; - 89419CC81957016300BFCA27 /* fzcyjt.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 89419CC71957016300BFCA27 /* fzcyjt.ttf */; }; - 89419CFC195701D800BFCA27 /* OzgCCScrollBgNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89419CCA195701D800BFCA27 /* OzgCCScrollBgNode.cpp */; }; - 89419CFD195701D800BFCA27 /* OzgCCUtility.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89419CCC195701D800BFCA27 /* OzgCCUtility.cpp */; }; - 89419CFE195701D800BFCA27 /* OzgFileUtility.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89419CCE195701D800BFCA27 /* OzgFileUtility.cpp */; }; - 89419CFF195701D800BFCA27 /* OzgJoystickLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89419CD0195701D800BFCA27 /* OzgJoystickLayer.cpp */; }; - 89419D00195701D800BFCA27 /* RPGBaseSceneLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89419CD2195701D800BFCA27 /* RPGBaseSceneLayer.cpp */; }; - 89419D01195701D800BFCA27 /* RPGBattleMenu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89419CD4195701D800BFCA27 /* RPGBattleMenu.cpp */; }; - 89419D02195701D800BFCA27 /* RPGBattleMonsterSprite.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89419CD6195701D800BFCA27 /* RPGBattleMonsterSprite.cpp */; }; - 89419D03195701D800BFCA27 /* RPGBattlePlayerSprite.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89419CD8195701D800BFCA27 /* RPGBattlePlayerSprite.cpp */; }; - 89419D04195701D800BFCA27 /* RPGBattleSceneLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89419CDA195701D800BFCA27 /* RPGBattleSceneLayer.cpp */; }; - 89419D05195701D800BFCA27 /* RPGComputingResults.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89419CDC195701D800BFCA27 /* RPGComputingResults.cpp */; }; - 89419D06195701D800BFCA27 /* RPGData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89419CDE195701D800BFCA27 /* RPGData.cpp */; }; - 89419D07195701D800BFCA27 /* RPGDialogLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89419CE0195701D800BFCA27 /* RPGDialogLayer.cpp */; }; - 89419D08195701D800BFCA27 /* RPGLoadingSceneLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89419CE2195701D800BFCA27 /* RPGLoadingSceneLayer.cpp */; }; - 89419D09195701D800BFCA27 /* RPGMapChoicePlayerMenuLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89419CE4195701D800BFCA27 /* RPGMapChoicePlayerMenuLayer.cpp */; }; - 89419D0A195701D800BFCA27 /* RPGMapDialogLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89419CE6195701D800BFCA27 /* RPGMapDialogLayer.cpp */; }; - 89419D0B195701D800BFCA27 /* RPGMapEquipMenuLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89419CE8195701D800BFCA27 /* RPGMapEquipMenuLayer.cpp */; }; - 89419D0C195701D800BFCA27 /* RPGMapItemsMenuLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89419CEA195701D800BFCA27 /* RPGMapItemsMenuLayer.cpp */; }; - 89419D0D195701D800BFCA27 /* RPGMapMenuLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89419CEC195701D800BFCA27 /* RPGMapMenuLayer.cpp */; }; - 89419D0E195701D800BFCA27 /* RPGMapNPCRoleSprite.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89419CEE195701D800BFCA27 /* RPGMapNPCRoleSprite.cpp */; }; - 89419D0F195701D800BFCA27 /* RPGMapRoleSprite.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89419CF0195701D800BFCA27 /* RPGMapRoleSprite.cpp */; }; - 89419D10195701D800BFCA27 /* RPGMapSceneLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89419CF2195701D800BFCA27 /* RPGMapSceneLayer.cpp */; }; - 89419D11195701D800BFCA27 /* RPGMapSkillMenuLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89419CF4195701D800BFCA27 /* RPGMapSkillMenuLayer.cpp */; }; - 89419D12195701D800BFCA27 /* RPGMapStatusMenuLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89419CF6195701D800BFCA27 /* RPGMapStatusMenuLayer.cpp */; }; - 89419D13195701D800BFCA27 /* RPGResultsLogic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89419CF8195701D800BFCA27 /* RPGResultsLogic.cpp */; }; - 89419D14195701D800BFCA27 /* RPGStartSceneLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89419CFA195701D800BFCA27 /* RPGStartSceneLayer.cpp */; }; + 8974E3F91A43069800D343A3 /* joystick.plist in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3CC1A43069800D343A3 /* joystick.plist */; }; + 8974E3FA1A43069800D343A3 /* joystick.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3CD1A43069800D343A3 /* joystick.png */; }; + 8974E3FB1A43069800D343A3 /* main.plist in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3CE1A43069800D343A3 /* main.plist */; }; + 8974E3FC1A43069800D343A3 /* main.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3CF1A43069800D343A3 /* main.png */; }; + 8974E3FD1A43069800D343A3 /* map_01.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3D01A43069800D343A3 /* map_01.tmx */; }; + 8974E3FE1A43069800D343A3 /* map_02.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3D11A43069800D343A3 /* map_02.tmx */; }; + 8974E3FF1A43069800D343A3 /* map_03.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3D21A43069800D343A3 /* map_03.tmx */; }; + 8974E4001A43069800D343A3 /* map_menu1_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3D31A43069800D343A3 /* map_menu1_style1.tmx */; }; + 8974E4011A43069800D343A3 /* map_menu1_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3D41A43069800D343A3 /* map_menu1_style2.tmx */; }; + 8974E4021A43069800D343A3 /* map_menu1_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3D51A43069800D343A3 /* map_menu1_style3.tmx */; }; + 8974E4031A43069800D343A3 /* map_menu2_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3D61A43069800D343A3 /* map_menu2_style1.tmx */; }; + 8974E4041A43069800D343A3 /* map_menu2_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3D71A43069800D343A3 /* map_menu2_style2.tmx */; }; + 8974E4051A43069800D343A3 /* map_menu2_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3D81A43069800D343A3 /* map_menu2_style3.tmx */; }; + 8974E4061A43069800D343A3 /* map_menu3_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3D91A43069800D343A3 /* map_menu3_style1.tmx */; }; + 8974E4071A43069800D343A3 /* map_menu3_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3DA1A43069800D343A3 /* map_menu3_style2.tmx */; }; + 8974E4081A43069800D343A3 /* map_menu3_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3DB1A43069800D343A3 /* map_menu3_style3.tmx */; }; + 8974E4091A43069800D343A3 /* map_menu4_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3DC1A43069800D343A3 /* map_menu4_style1.tmx */; }; + 8974E40A1A43069800D343A3 /* map_menu4_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3DD1A43069800D343A3 /* map_menu4_style2.tmx */; }; + 8974E40B1A43069800D343A3 /* map_menu4_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3DE1A43069800D343A3 /* map_menu4_style3.tmx */; }; + 8974E40C1A43069800D343A3 /* map_menu5_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3DF1A43069800D343A3 /* map_menu5_style1.tmx */; }; + 8974E40D1A43069800D343A3 /* map_menu5_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3E01A43069800D343A3 /* map_menu5_style2.tmx */; }; + 8974E40E1A43069800D343A3 /* map_menu5_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3E11A43069800D343A3 /* map_menu5_style3.tmx */; }; + 8974E40F1A43069800D343A3 /* map.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3E21A43069800D343A3 /* map.png */; }; + 8974E4101A43069800D343A3 /* monsters.plist in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3E31A43069800D343A3 /* monsters.plist */; }; + 8974E4111A43069800D343A3 /* monsters.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3E41A43069800D343A3 /* monsters.png */; }; + 8974E4121A43069800D343A3 /* scene_battle_cns.plist in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3E51A43069800D343A3 /* scene_battle_cns.plist */; }; + 8974E4131A43069800D343A3 /* scene_loading_cns.plist in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3E61A43069800D343A3 /* scene_loading_cns.plist */; }; + 8974E4141A43069800D343A3 /* scene_map_cns.plist in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3E71A43069800D343A3 /* scene_map_cns.plist */; }; + 8974E4151A43069800D343A3 /* scene_start_cns.plist in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3E81A43069800D343A3 /* scene_start_cns.plist */; }; + 8974E4161A43069800D343A3 /* select_player_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3E91A43069800D343A3 /* select_player_style1.tmx */; }; + 8974E4171A43069800D343A3 /* select_player_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3EA1A43069800D343A3 /* select_player_style2.tmx */; }; + 8974E4181A43069800D343A3 /* select_player_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3EB1A43069800D343A3 /* select_player_style3.tmx */; }; + 8974E4191A43069800D343A3 /* shop_list_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3EC1A43069800D343A3 /* shop_list_style1.tmx */; }; + 8974E41A1A43069800D343A3 /* shop_list_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3ED1A43069800D343A3 /* shop_list_style2.tmx */; }; + 8974E41B1A43069800D343A3 /* shop_list_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3EE1A43069800D343A3 /* shop_list_style3.tmx */; }; + 8974E41C1A43069800D343A3 /* shop_menu_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3EF1A43069800D343A3 /* shop_menu_style1.tmx */; }; + 8974E41D1A43069800D343A3 /* shop_menu_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3F01A43069800D343A3 /* shop_menu_style2.tmx */; }; + 8974E41E1A43069800D343A3 /* shop_menu_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3F11A43069800D343A3 /* shop_menu_style3.tmx */; }; + 8974E41F1A43069800D343A3 /* skill_cure.plist in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3F21A43069800D343A3 /* skill_cure.plist */; }; + 8974E4201A43069800D343A3 /* skill_fire.plist in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3F31A43069800D343A3 /* skill_fire.plist */; }; + 8974E4211A43069800D343A3 /* start_bg.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3F41A43069800D343A3 /* start_bg.png */; }; + 8974E4221A43069800D343A3 /* use_item.plist in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3F51A43069800D343A3 /* use_item.plist */; }; + 8974E4231A43069800D343A3 /* Window_a_00.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3F61A43069800D343A3 /* Window_a_00.png */; }; + 8974E4241A43069800D343A3 /* Window_b_00.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3F71A43069800D343A3 /* Window_b_00.png */; }; + 8974E4251A43069800D343A3 /* Window_c_00.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E3F81A43069800D343A3 /* Window_c_00.png */; }; + 8974E4731A4306A700D343A3 /* actor4_0.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E4261A4306A700D343A3 /* actor4_0.png */; }; + 8974E4741A4306A700D343A3 /* actor4_1.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E4271A4306A700D343A3 /* actor4_1.png */; }; + 8974E4751A4306A700D343A3 /* actor4_2.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E4281A4306A700D343A3 /* actor4_2.png */; }; + 8974E4761A4306A700D343A3 /* actor4_3.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E4291A4306A700D343A3 /* actor4_3.png */; }; + 8974E4771A4306A700D343A3 /* actor4_4.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E42A1A4306A700D343A3 /* actor4_4.png */; }; + 8974E4781A4306A700D343A3 /* actor5_0.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E42B1A4306A700D343A3 /* actor5_0.png */; }; + 8974E4791A4306A700D343A3 /* actor5_1.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E42C1A4306A700D343A3 /* actor5_1.png */; }; + 8974E47A1A4306A700D343A3 /* actor5_2.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E42D1A4306A700D343A3 /* actor5_2.png */; }; + 8974E47B1A4306A700D343A3 /* actor5_3.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E42E1A4306A700D343A3 /* actor5_3.png */; }; + 8974E47C1A4306A700D343A3 /* actor5_4.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E42F1A4306A700D343A3 /* actor5_4.png */; }; + 8974E47D1A4306A700D343A3 /* actor7_0.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E4301A4306A700D343A3 /* actor7_0.png */; }; + 8974E47E1A4306A700D343A3 /* actor7_1.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E4311A4306A700D343A3 /* actor7_1.png */; }; + 8974E47F1A4306A700D343A3 /* actor7_2.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E4321A4306A700D343A3 /* actor7_2.png */; }; + 8974E4801A4306A700D343A3 /* actor7_3.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E4331A4306A700D343A3 /* actor7_3.png */; }; + 8974E4811A4306A700D343A3 /* actor7_4.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E4341A4306A700D343A3 /* actor7_4.png */; }; + 8974E4821A4306A700D343A3 /* actor8_0.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E4351A4306A700D343A3 /* actor8_0.png */; }; + 8974E4831A4306A700D343A3 /* actor8_1.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E4361A4306A700D343A3 /* actor8_1.png */; }; + 8974E4841A4306A700D343A3 /* actor8_2.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E4371A4306A700D343A3 /* actor8_2.png */; }; + 8974E4851A4306A700D343A3 /* actor8_3.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E4381A4306A700D343A3 /* actor8_3.png */; }; + 8974E4861A4306A700D343A3 /* actor8_4.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E4391A4306A700D343A3 /* actor8_4.png */; }; + 8974E4871A4306A700D343A3 /* actor111.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E43A1A4306A700D343A3 /* actor111.png */; }; + 8974E4881A4306A700D343A3 /* actor113.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E43B1A4306A700D343A3 /* actor113.png */; }; + 8974E4891A4306A700D343A3 /* actor114.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E43C1A4306A700D343A3 /* actor114.png */; }; + 8974E48A1A4306A700D343A3 /* actor115.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E43D1A4306A700D343A3 /* actor115.png */; }; + 8974E48B1A4306A700D343A3 /* actor117.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E43E1A4306A700D343A3 /* actor117.png */; }; + 8974E48C1A4306A700D343A3 /* actor120.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E43F1A4306A700D343A3 /* actor120.png */; }; + 8974E48D1A4306A700D343A3 /* alert_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E4401A4306A700D343A3 /* alert_style1.tmx */; }; + 8974E48E1A4306A700D343A3 /* alert_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E4411A4306A700D343A3 /* alert_style2.tmx */; }; + 8974E48F1A4306A700D343A3 /* alert_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E4421A4306A700D343A3 /* alert_style3.tmx */; }; + 8974E4901A4306A700D343A3 /* attack_damage.plist in Resources */ = {isa = PBXBuildFile; fileRef = 8974E4431A4306A700D343A3 /* attack_damage.plist */; }; + 8974E4911A4306A700D343A3 /* attack_damage.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E4441A4306A700D343A3 /* attack_damage.png */; }; + 8974E4921A4306A700D343A3 /* attack1.ExportJson in Resources */ = {isa = PBXBuildFile; fileRef = 8974E4451A4306A700D343A3 /* attack1.ExportJson */; }; + 8974E4931A4306A700D343A3 /* attack2.ExportJson in Resources */ = {isa = PBXBuildFile; fileRef = 8974E4461A4306A700D343A3 /* attack2.ExportJson */; }; + 8974E4941A4306A700D343A3 /* attack3.ExportJson in Resources */ = {isa = PBXBuildFile; fileRef = 8974E4471A4306A700D343A3 /* attack3.ExportJson */; }; + 8974E4951A4306A700D343A3 /* attack4.ExportJson in Resources */ = {isa = PBXBuildFile; fileRef = 8974E4481A4306A700D343A3 /* attack4.ExportJson */; }; + 8974E4961A4306A700D343A3 /* attack10.plist in Resources */ = {isa = PBXBuildFile; fileRef = 8974E4491A4306A700D343A3 /* attack10.plist */; }; + 8974E4971A4306A700D343A3 /* attack10.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E44A1A4306A700D343A3 /* attack10.png */; }; + 8974E4981A4306A700D343A3 /* attack20.plist in Resources */ = {isa = PBXBuildFile; fileRef = 8974E44B1A4306A700D343A3 /* attack20.plist */; }; + 8974E4991A4306A700D343A3 /* attack20.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E44C1A4306A700D343A3 /* attack20.png */; }; + 8974E49A1A4306A700D343A3 /* attack30.plist in Resources */ = {isa = PBXBuildFile; fileRef = 8974E44D1A4306A700D343A3 /* attack30.plist */; }; + 8974E49B1A4306A700D343A3 /* attack30.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E44E1A4306A700D343A3 /* attack30.png */; }; + 8974E49C1A4306A700D343A3 /* attack40.plist in Resources */ = {isa = PBXBuildFile; fileRef = 8974E44F1A4306A700D343A3 /* attack40.plist */; }; + 8974E49D1A4306A700D343A3 /* attack40.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E4501A4306A700D343A3 /* attack40.png */; }; + 8974E49E1A4306A700D343A3 /* audio_battle_attack1.wav in Resources */ = {isa = PBXBuildFile; fileRef = 8974E4511A4306A700D343A3 /* audio_battle_attack1.wav */; }; + 8974E49F1A4306A700D343A3 /* audio_battle_attack2.wav in Resources */ = {isa = PBXBuildFile; fileRef = 8974E4521A4306A700D343A3 /* audio_battle_attack2.wav */; }; + 8974E4A01A4306A700D343A3 /* audio_battle_end.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = 8974E4531A4306A700D343A3 /* audio_battle_end.mp3 */; }; + 8974E4A11A4306A700D343A3 /* audio_battle_lose.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = 8974E4541A4306A700D343A3 /* audio_battle_lose.mp3 */; }; + 8974E4A21A4306A700D343A3 /* audio_battle_menu.wav in Resources */ = {isa = PBXBuildFile; fileRef = 8974E4551A4306A700D343A3 /* audio_battle_menu.wav */; }; + 8974E4A31A4306A700D343A3 /* audio_battle_start.wav in Resources */ = {isa = PBXBuildFile; fileRef = 8974E4561A4306A700D343A3 /* audio_battle_start.wav */; }; + 8974E4A41A4306A700D343A3 /* audio_battle.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = 8974E4571A4306A700D343A3 /* audio_battle.mp3 */; }; + 8974E4A51A4306A700D343A3 /* audio_effect_btn.wav in Resources */ = {isa = PBXBuildFile; fileRef = 8974E4581A4306A700D343A3 /* audio_effect_btn.wav */; }; + 8974E4A61A4306A700D343A3 /* audio_inn.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = 8974E4591A4306A700D343A3 /* audio_inn.mp3 */; }; + 8974E4A71A4306A700D343A3 /* audio_map_01.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = 8974E45A1A4306A700D343A3 /* audio_map_01.mp3 */; }; + 8974E4A81A4306A700D343A3 /* audio_map_02.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = 8974E45B1A4306A700D343A3 /* audio_map_02.mp3 */; }; + 8974E4A91A4306A700D343A3 /* audio_map_03.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = 8974E45C1A4306A700D343A3 /* audio_map_03.mp3 */; }; + 8974E4AA1A4306A700D343A3 /* audio_skill_cure.wav in Resources */ = {isa = PBXBuildFile; fileRef = 8974E45D1A4306A700D343A3 /* audio_skill_cure.wav */; }; + 8974E4AB1A4306A700D343A3 /* audio_skill_fire.wav in Resources */ = {isa = PBXBuildFile; fileRef = 8974E45E1A4306A700D343A3 /* audio_skill_fire.wav */; }; + 8974E4AC1A4306A700D343A3 /* audio_start_btn.wav in Resources */ = {isa = PBXBuildFile; fileRef = 8974E45F1A4306A700D343A3 /* audio_start_btn.wav */; }; + 8974E4AD1A4306A700D343A3 /* audio_start.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = 8974E4601A4306A700D343A3 /* audio_start.mp3 */; }; + 8974E4AE1A4306A700D343A3 /* audio_use_items.wav in Resources */ = {isa = PBXBuildFile; fileRef = 8974E4611A4306A700D343A3 /* audio_use_items.wav */; }; + 8974E4AF1A4306A700D343A3 /* battle_battlemenu_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E4621A4306A700D343A3 /* battle_battlemenu_style1.tmx */; }; + 8974E4B01A4306A700D343A3 /* battle_battlemenu_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E4631A4306A700D343A3 /* battle_battlemenu_style2.tmx */; }; + 8974E4B11A4306A700D343A3 /* battle_battlemenu_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E4641A4306A700D343A3 /* battle_battlemenu_style3.tmx */; }; + 8974E4B21A4306A700D343A3 /* battle_bg.png in Resources */ = {isa = PBXBuildFile; fileRef = 8974E4651A4306A700D343A3 /* battle_bg.png */; }; + 8974E4B31A4306A700D343A3 /* battle_menu_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E4661A4306A700D343A3 /* battle_menu_style1.tmx */; }; + 8974E4B41A4306A700D343A3 /* battle_menu_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E4671A4306A700D343A3 /* battle_menu_style2.tmx */; }; + 8974E4B51A4306A700D343A3 /* battle_menu_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E4681A4306A700D343A3 /* battle_menu_style3.tmx */; }; + 8974E4B61A4306A700D343A3 /* battle_msg_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E4691A4306A700D343A3 /* battle_msg_style1.tmx */; }; + 8974E4B71A4306A700D343A3 /* battle_msg_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E46A1A4306A700D343A3 /* battle_msg_style2.tmx */; }; + 8974E4B81A4306A700D343A3 /* battle_msg_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E46B1A4306A700D343A3 /* battle_msg_style3.tmx */; }; + 8974E4B91A4306A700D343A3 /* battle_select_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E46C1A4306A700D343A3 /* battle_select_style1.tmx */; }; + 8974E4BA1A4306A700D343A3 /* battle_select_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E46D1A4306A700D343A3 /* battle_select_style2.tmx */; }; + 8974E4BB1A4306A700D343A3 /* battle_select_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E46E1A4306A700D343A3 /* battle_select_style3.tmx */; }; + 8974E4BC1A4306A700D343A3 /* db.sys in Resources */ = {isa = PBXBuildFile; fileRef = 8974E46F1A4306A700D343A3 /* db.sys */; }; + 8974E4BD1A4306A700D343A3 /* dialog_style1.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E4701A4306A700D343A3 /* dialog_style1.tmx */; }; + 8974E4BE1A4306A700D343A3 /* dialog_style2.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E4711A4306A700D343A3 /* dialog_style2.tmx */; }; + 8974E4BF1A4306A700D343A3 /* dialog_style3.tmx in Resources */ = {isa = PBXBuildFile; fileRef = 8974E4721A4306A700D343A3 /* dialog_style3.tmx */; }; + 8974E4C11A43070300D343A3 /* fzcyjt.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 8974E4C01A43070300D343A3 /* fzcyjt.ttf */; }; + 8974E4F51A43071300D343A3 /* OzgCCScrollBgNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E4C31A43071300D343A3 /* OzgCCScrollBgNode.cpp */; }; + 8974E4F61A43071300D343A3 /* OzgCCUtility.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E4C51A43071300D343A3 /* OzgCCUtility.cpp */; }; + 8974E4F71A43071300D343A3 /* OzgFileUtility.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E4C71A43071300D343A3 /* OzgFileUtility.cpp */; }; + 8974E4F81A43071300D343A3 /* OzgJoystickLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E4C91A43071300D343A3 /* OzgJoystickLayer.cpp */; }; + 8974E4F91A43071300D343A3 /* RPGBaseSceneLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E4CB1A43071300D343A3 /* RPGBaseSceneLayer.cpp */; }; + 8974E4FA1A43071300D343A3 /* RPGBattleMenu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E4CD1A43071300D343A3 /* RPGBattleMenu.cpp */; }; + 8974E4FB1A43071300D343A3 /* RPGBattleMonsterSprite.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E4CF1A43071300D343A3 /* RPGBattleMonsterSprite.cpp */; }; + 8974E4FC1A43071300D343A3 /* RPGBattlePlayerSprite.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E4D11A43071300D343A3 /* RPGBattlePlayerSprite.cpp */; }; + 8974E4FD1A43071300D343A3 /* RPGBattleSceneLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E4D31A43071300D343A3 /* RPGBattleSceneLayer.cpp */; }; + 8974E4FE1A43071300D343A3 /* RPGComputingResults.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E4D51A43071300D343A3 /* RPGComputingResults.cpp */; }; + 8974E4FF1A43071300D343A3 /* RPGData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E4D71A43071300D343A3 /* RPGData.cpp */; }; + 8974E5001A43071300D343A3 /* RPGDialogLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E4D91A43071300D343A3 /* RPGDialogLayer.cpp */; }; + 8974E5011A43071300D343A3 /* RPGLoadingSceneLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E4DB1A43071300D343A3 /* RPGLoadingSceneLayer.cpp */; }; + 8974E5021A43071300D343A3 /* RPGMapChoicePlayerMenuLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E4DD1A43071300D343A3 /* RPGMapChoicePlayerMenuLayer.cpp */; }; + 8974E5031A43071300D343A3 /* RPGMapDialogLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E4DF1A43071300D343A3 /* RPGMapDialogLayer.cpp */; }; + 8974E5041A43071300D343A3 /* RPGMapEquipMenuLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E4E11A43071300D343A3 /* RPGMapEquipMenuLayer.cpp */; }; + 8974E5051A43071300D343A3 /* RPGMapItemsMenuLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E4E31A43071300D343A3 /* RPGMapItemsMenuLayer.cpp */; }; + 8974E5061A43071300D343A3 /* RPGMapMenuLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E4E51A43071300D343A3 /* RPGMapMenuLayer.cpp */; }; + 8974E5071A43071300D343A3 /* RPGMapNPCRoleSprite.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E4E71A43071300D343A3 /* RPGMapNPCRoleSprite.cpp */; }; + 8974E5081A43071300D343A3 /* RPGMapRoleSprite.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E4E91A43071300D343A3 /* RPGMapRoleSprite.cpp */; }; + 8974E5091A43071300D343A3 /* RPGMapSceneLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E4EB1A43071300D343A3 /* RPGMapSceneLayer.cpp */; }; + 8974E50A1A43071300D343A3 /* RPGMapSkillMenuLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E4ED1A43071300D343A3 /* RPGMapSkillMenuLayer.cpp */; }; + 8974E50B1A43071300D343A3 /* RPGMapStatusMenuLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E4EF1A43071300D343A3 /* RPGMapStatusMenuLayer.cpp */; }; + 8974E50C1A43071300D343A3 /* RPGResultsLogic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E4F11A43071300D343A3 /* RPGResultsLogic.cpp */; }; + 8974E50D1A43071300D343A3 /* RPGStartSceneLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E4F31A43071300D343A3 /* RPGStartSceneLayer.cpp */; }; + 8974E5111A43072E00D343A3 /* CppSQLite3.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E50F1A43072E00D343A3 /* CppSQLite3.cpp */; }; + 8974E51B1A43074700D343A3 /* Array.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E5131A43074700D343A3 /* Array.cpp */; }; + 8974E51C1A43074700D343A3 /* Convert.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E5141A43074700D343A3 /* Convert.cpp */; }; + 8974E51D1A43074700D343A3 /* Escaper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E5151A43074700D343A3 /* Escaper.cpp */; }; + 8974E51E1A43074700D343A3 /* IndentCanceller.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E5161A43074700D343A3 /* IndentCanceller.cpp */; }; + 8974E51F1A43074700D343A3 /* Indenter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E5171A43074700D343A3 /* Indenter.cpp */; }; + 8974E5201A43074700D343A3 /* Object.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E5181A43074700D343A3 /* Object.cpp */; }; + 8974E5211A43074700D343A3 /* SolidusEscaper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E5191A43074700D343A3 /* SolidusEscaper.cpp */; }; + 8974E5221A43074700D343A3 /* Value.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8974E51A1A43074700D343A3 /* Value.cpp */; }; 8C583FAD169DB6D500F63A10 /* CCEditBox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C583FA8169DB6D500F63A10 /* CCEditBox.cpp */; }; 8C583FAE169DB6D500F63A10 /* CCEditBoxImplMac.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8C583FAC169DB6D500F63A10 /* CCEditBoxImplMac.mm */; }; /* End PBXBuildFile section */ @@ -929,202 +928,190 @@ 41BC70E315BF81A5006A0A6C /* Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Prefix.pch; sourceTree = SOURCE_ROOT; }; 43B91F071949BB0500F7F815 /* CocoLoader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CocoLoader.cpp; sourceTree = ""; }; 43B91F081949BB0500F7F815 /* CocoLoader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CocoLoader.h; sourceTree = ""; }; - 89419B731957009700BFCA27 /* CppSQLite3.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CppSQLite3.cpp; sourceTree = ""; }; - 89419B741957009700BFCA27 /* CppSQLite3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CppSQLite3.h; sourceTree = ""; }; - 89419B781957009700BFCA27 /* Array.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Array.h; sourceTree = ""; }; - 89419B791957009700BFCA27 /* Convert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Convert.h; sourceTree = ""; }; - 89419B7A1957009700BFCA27 /* Escaper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Escaper.h; sourceTree = ""; }; - 89419B7B1957009700BFCA27 /* Grammar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Grammar.h; sourceTree = ""; }; - 89419B7C1957009700BFCA27 /* IndentCanceller.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IndentCanceller.h; sourceTree = ""; }; - 89419B7D1957009700BFCA27 /* Indenter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Indenter.h; sourceTree = ""; }; - 89419B7E1957009700BFCA27 /* Object.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Object.h; sourceTree = ""; }; - 89419B7F1957009700BFCA27 /* OutputFilter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OutputFilter.h; sourceTree = ""; }; - 89419B801957009700BFCA27 /* SolidusEscaper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SolidusEscaper.h; sourceTree = ""; }; - 89419B811957009700BFCA27 /* Value.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Value.h; sourceTree = ""; }; - 89419B821957009700BFCA27 /* JsonBox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JsonBox.h; sourceTree = ""; }; - 89419B831957009700BFCA27 /* sn.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = sn.txt; sourceTree = ""; }; - 89419B851957009700BFCA27 /* Array.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Array.cpp; sourceTree = ""; }; - 89419B861957009700BFCA27 /* Convert.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Convert.cpp; sourceTree = ""; }; - 89419B871957009700BFCA27 /* Escaper.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Escaper.cpp; sourceTree = ""; }; - 89419B881957009700BFCA27 /* IndentCanceller.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = IndentCanceller.cpp; sourceTree = ""; }; - 89419B891957009700BFCA27 /* Indenter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Indenter.cpp; sourceTree = ""; }; - 89419B8A1957009700BFCA27 /* Object.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Object.cpp; sourceTree = ""; }; - 89419B8B1957009700BFCA27 /* SolidusEscaper.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SolidusEscaper.cpp; sourceTree = ""; }; - 89419B8C1957009700BFCA27 /* Value.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Value.cpp; sourceTree = ""; }; - 89419BD31957012100BFCA27 /* joystick.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = joystick.plist; sourceTree = ""; }; - 89419BD41957012100BFCA27 /* joystick.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = joystick.png; sourceTree = ""; }; - 89419BD51957012100BFCA27 /* main.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = main.plist; sourceTree = ""; }; - 89419BD61957012100BFCA27 /* main.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = main.png; sourceTree = ""; }; - 89419BD71957012100BFCA27 /* map_01.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_01.tmx; sourceTree = ""; }; - 89419BD81957012100BFCA27 /* map_02.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_02.tmx; sourceTree = ""; }; - 89419BD91957012100BFCA27 /* map_03.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_03.tmx; sourceTree = ""; }; - 89419BDA1957012100BFCA27 /* map_menu1_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu1_style1.tmx; sourceTree = ""; }; - 89419BDB1957012100BFCA27 /* map_menu1_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu1_style2.tmx; sourceTree = ""; }; - 89419BDC1957012100BFCA27 /* map_menu1_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu1_style3.tmx; sourceTree = ""; }; - 89419BDD1957012100BFCA27 /* map_menu2_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu2_style1.tmx; sourceTree = ""; }; - 89419BDE1957012100BFCA27 /* map_menu2_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu2_style2.tmx; sourceTree = ""; }; - 89419BDF1957012100BFCA27 /* map_menu2_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu2_style3.tmx; sourceTree = ""; }; - 89419BE01957012100BFCA27 /* map_menu3_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu3_style1.tmx; sourceTree = ""; }; - 89419BE11957012100BFCA27 /* map_menu3_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu3_style2.tmx; sourceTree = ""; }; - 89419BE21957012100BFCA27 /* map_menu3_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu3_style3.tmx; sourceTree = ""; }; - 89419BE31957012100BFCA27 /* map_menu4_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu4_style1.tmx; sourceTree = ""; }; - 89419BE41957012100BFCA27 /* map_menu4_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu4_style2.tmx; sourceTree = ""; }; - 89419BE51957012100BFCA27 /* map_menu4_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu4_style3.tmx; sourceTree = ""; }; - 89419BE61957012100BFCA27 /* map_menu5_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu5_style1.tmx; sourceTree = ""; }; - 89419BE71957012100BFCA27 /* map_menu5_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu5_style2.tmx; sourceTree = ""; }; - 89419BE81957012100BFCA27 /* map_menu5_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu5_style3.tmx; sourceTree = ""; }; - 89419BE91957012100BFCA27 /* map.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = map.png; sourceTree = ""; }; - 89419BEA1957012100BFCA27 /* monsters.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = monsters.plist; sourceTree = ""; }; - 89419BEB1957012100BFCA27 /* monsters.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = monsters.png; sourceTree = ""; }; - 89419BEC1957012100BFCA27 /* scene_battle_cns.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = scene_battle_cns.plist; sourceTree = ""; }; - 89419BED1957012100BFCA27 /* scene_loading_cns.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = scene_loading_cns.plist; sourceTree = ""; }; - 89419BEE1957012100BFCA27 /* scene_map_cns.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = scene_map_cns.plist; sourceTree = ""; }; - 89419BEF1957012100BFCA27 /* scene_start_cns.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = scene_start_cns.plist; sourceTree = ""; }; - 89419BF01957012100BFCA27 /* select_player_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = select_player_style1.tmx; sourceTree = ""; }; - 89419BF11957012100BFCA27 /* select_player_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = select_player_style2.tmx; sourceTree = ""; }; - 89419BF21957012100BFCA27 /* select_player_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = select_player_style3.tmx; sourceTree = ""; }; - 89419BF31957012100BFCA27 /* shop_list_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = shop_list_style1.tmx; sourceTree = ""; }; - 89419BF41957012100BFCA27 /* shop_list_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = shop_list_style2.tmx; sourceTree = ""; }; - 89419BF51957012100BFCA27 /* shop_list_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = shop_list_style3.tmx; sourceTree = ""; }; - 89419BF61957012100BFCA27 /* shop_menu_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = shop_menu_style1.tmx; sourceTree = ""; }; - 89419BF71957012100BFCA27 /* shop_menu_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = shop_menu_style2.tmx; sourceTree = ""; }; - 89419BF81957012100BFCA27 /* shop_menu_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = shop_menu_style3.tmx; sourceTree = ""; }; - 89419BF91957012100BFCA27 /* skill_cure.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = skill_cure.plist; sourceTree = ""; }; - 89419BFA1957012100BFCA27 /* skill_fire.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = skill_fire.plist; sourceTree = ""; }; - 89419BFB1957012100BFCA27 /* start_bg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = start_bg.png; sourceTree = ""; }; - 89419BFC1957012100BFCA27 /* use_item.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = use_item.plist; sourceTree = ""; }; - 89419BFD1957012100BFCA27 /* Window_a_00.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Window_a_00.png; sourceTree = ""; }; - 89419BFE1957012100BFCA27 /* Window_b_00.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Window_b_00.png; sourceTree = ""; }; - 89419BFF1957012100BFCA27 /* Window_c_00.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Window_c_00.png; sourceTree = ""; }; - 89419C2D1957013800BFCA27 /* attack_damage.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = attack_damage.plist; sourceTree = ""; }; - 89419C2E1957013800BFCA27 /* attack_damage.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = attack_damage.png; sourceTree = ""; }; - 89419C2F1957013800BFCA27 /* attack1.ExportJson */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = attack1.ExportJson; sourceTree = ""; }; - 89419C301957013800BFCA27 /* attack2.ExportJson */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = attack2.ExportJson; sourceTree = ""; }; - 89419C311957013800BFCA27 /* attack3.ExportJson */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = attack3.ExportJson; sourceTree = ""; }; - 89419C321957013800BFCA27 /* attack4.ExportJson */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = attack4.ExportJson; sourceTree = ""; }; - 89419C331957013800BFCA27 /* attack10.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = attack10.plist; sourceTree = ""; }; - 89419C341957013800BFCA27 /* attack10.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = attack10.png; sourceTree = ""; }; - 89419C351957013800BFCA27 /* attack20.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = attack20.plist; sourceTree = ""; }; - 89419C361957013800BFCA27 /* attack20.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = attack20.png; sourceTree = ""; }; - 89419C371957013800BFCA27 /* attack30.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = attack30.plist; sourceTree = ""; }; - 89419C381957013800BFCA27 /* attack30.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = attack30.png; sourceTree = ""; }; - 89419C391957013800BFCA27 /* attack40.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = attack40.plist; sourceTree = ""; }; - 89419C3A1957013800BFCA27 /* attack40.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = attack40.png; sourceTree = ""; }; - 89419C3B1957013800BFCA27 /* audio_battle_attack1.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = audio_battle_attack1.wav; sourceTree = ""; }; - 89419C3C1957013800BFCA27 /* audio_battle_attack2.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = audio_battle_attack2.wav; sourceTree = ""; }; - 89419C3D1957013800BFCA27 /* audio_battle_end.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = audio_battle_end.mp3; sourceTree = ""; }; - 89419C3E1957013800BFCA27 /* audio_battle_lose.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = audio_battle_lose.mp3; sourceTree = ""; }; - 89419C3F1957013800BFCA27 /* audio_battle_menu.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = audio_battle_menu.wav; sourceTree = ""; }; - 89419C401957013800BFCA27 /* audio_battle_start.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = audio_battle_start.wav; sourceTree = ""; }; - 89419C411957013800BFCA27 /* audio_battle.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = audio_battle.mp3; sourceTree = ""; }; - 89419C421957013800BFCA27 /* audio_effect_btn.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = audio_effect_btn.wav; sourceTree = ""; }; - 89419C431957013800BFCA27 /* audio_inn.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = audio_inn.mp3; sourceTree = ""; }; - 89419C441957013800BFCA27 /* audio_map_01.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = audio_map_01.mp3; sourceTree = ""; }; - 89419C451957013800BFCA27 /* audio_map_02.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = audio_map_02.mp3; sourceTree = ""; }; - 89419C461957013800BFCA27 /* audio_map_03.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = audio_map_03.mp3; sourceTree = ""; }; - 89419C471957013800BFCA27 /* audio_skill_cure.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = audio_skill_cure.wav; sourceTree = ""; }; - 89419C481957013800BFCA27 /* audio_skill_fire.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = audio_skill_fire.wav; sourceTree = ""; }; - 89419C491957013800BFCA27 /* audio_start_btn.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = audio_start_btn.wav; sourceTree = ""; }; - 89419C4A1957013800BFCA27 /* audio_start.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = audio_start.mp3; sourceTree = ""; }; - 89419C4B1957013800BFCA27 /* audio_use_items.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = audio_use_items.wav; sourceTree = ""; }; - 89419C4C1957013800BFCA27 /* battle_battlemenu_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = battle_battlemenu_style1.tmx; sourceTree = ""; }; - 89419C4D1957013800BFCA27 /* battle_battlemenu_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = battle_battlemenu_style2.tmx; sourceTree = ""; }; - 89419C4E1957013800BFCA27 /* battle_battlemenu_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = battle_battlemenu_style3.tmx; sourceTree = ""; }; - 89419C4F1957013800BFCA27 /* battle_bg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = battle_bg.png; sourceTree = ""; }; - 89419C501957013800BFCA27 /* battle_menu_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = battle_menu_style1.tmx; sourceTree = ""; }; - 89419C511957013800BFCA27 /* battle_menu_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = battle_menu_style2.tmx; sourceTree = ""; }; - 89419C521957013800BFCA27 /* battle_menu_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = battle_menu_style3.tmx; sourceTree = ""; }; - 89419C531957013800BFCA27 /* battle_msg_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = battle_msg_style1.tmx; sourceTree = ""; }; - 89419C541957013800BFCA27 /* battle_msg_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = battle_msg_style2.tmx; sourceTree = ""; }; - 89419C551957013800BFCA27 /* battle_msg_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = battle_msg_style3.tmx; sourceTree = ""; }; - 89419C561957013800BFCA27 /* battle_select_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = battle_select_style1.tmx; sourceTree = ""; }; - 89419C571957013800BFCA27 /* battle_select_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = battle_select_style2.tmx; sourceTree = ""; }; - 89419C581957013800BFCA27 /* battle_select_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = battle_select_style3.tmx; sourceTree = ""; }; - 89419C591957013800BFCA27 /* db.sys */ = {isa = PBXFileReference; lastKnownFileType = file; path = db.sys; sourceTree = ""; }; - 89419C5A1957013800BFCA27 /* dialog_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = dialog_style1.tmx; sourceTree = ""; }; - 89419C5B1957013800BFCA27 /* dialog_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = dialog_style2.tmx; sourceTree = ""; }; - 89419C5C1957013800BFCA27 /* dialog_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = dialog_style3.tmx; sourceTree = ""; }; - 89419C8D1957014400BFCA27 /* actor4_0.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor4_0.png; sourceTree = ""; }; - 89419C8E1957014400BFCA27 /* actor4_1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor4_1.png; sourceTree = ""; }; - 89419C8F1957014400BFCA27 /* actor4_2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor4_2.png; sourceTree = ""; }; - 89419C901957014400BFCA27 /* actor4_3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor4_3.png; sourceTree = ""; }; - 89419C911957014400BFCA27 /* actor4_4.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor4_4.png; sourceTree = ""; }; - 89419C921957014400BFCA27 /* actor5_0.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor5_0.png; sourceTree = ""; }; - 89419C931957014400BFCA27 /* actor5_1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor5_1.png; sourceTree = ""; }; - 89419C941957014400BFCA27 /* actor5_2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor5_2.png; sourceTree = ""; }; - 89419C951957014400BFCA27 /* actor5_3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor5_3.png; sourceTree = ""; }; - 89419C961957014400BFCA27 /* actor5_4.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor5_4.png; sourceTree = ""; }; - 89419C971957014400BFCA27 /* actor7_0.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor7_0.png; sourceTree = ""; }; - 89419C981957014400BFCA27 /* actor7_1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor7_1.png; sourceTree = ""; }; - 89419C991957014400BFCA27 /* actor7_2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor7_2.png; sourceTree = ""; }; - 89419C9A1957014400BFCA27 /* actor7_3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor7_3.png; sourceTree = ""; }; - 89419C9B1957014400BFCA27 /* actor7_4.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor7_4.png; sourceTree = ""; }; - 89419C9C1957014400BFCA27 /* actor8_0.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor8_0.png; sourceTree = ""; }; - 89419C9D1957014400BFCA27 /* actor8_1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor8_1.png; sourceTree = ""; }; - 89419C9E1957014400BFCA27 /* actor8_2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor8_2.png; sourceTree = ""; }; - 89419C9F1957014400BFCA27 /* actor8_3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor8_3.png; sourceTree = ""; }; - 89419CA01957014400BFCA27 /* actor8_4.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor8_4.png; sourceTree = ""; }; - 89419CA11957014400BFCA27 /* actor111.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor111.png; sourceTree = ""; }; - 89419CA21957014400BFCA27 /* actor113.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor113.png; sourceTree = ""; }; - 89419CA31957014400BFCA27 /* actor114.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor114.png; sourceTree = ""; }; - 89419CA41957014400BFCA27 /* actor115.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor115.png; sourceTree = ""; }; - 89419CA51957014400BFCA27 /* actor117.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor117.png; sourceTree = ""; }; - 89419CA61957014400BFCA27 /* actor120.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor120.png; sourceTree = ""; }; - 89419CA71957014400BFCA27 /* alert_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = alert_style1.tmx; sourceTree = ""; }; - 89419CA81957014400BFCA27 /* alert_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = alert_style2.tmx; sourceTree = ""; }; - 89419CA91957014400BFCA27 /* alert_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = alert_style3.tmx; sourceTree = ""; }; - 89419CC71957016300BFCA27 /* fzcyjt.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = fzcyjt.ttf; path = fonts/fzcyjt.ttf; sourceTree = ""; }; - 89419CC9195701D800BFCA27 /* GameCfg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GameCfg.h; path = ../Classes/GameCfg.h; sourceTree = ""; }; - 89419CCA195701D800BFCA27 /* OzgCCScrollBgNode.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = OzgCCScrollBgNode.cpp; path = ../Classes/OzgCCScrollBgNode.cpp; sourceTree = ""; }; - 89419CCB195701D800BFCA27 /* OzgCCScrollBgNode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OzgCCScrollBgNode.h; path = ../Classes/OzgCCScrollBgNode.h; sourceTree = ""; }; - 89419CCC195701D800BFCA27 /* OzgCCUtility.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = OzgCCUtility.cpp; path = ../Classes/OzgCCUtility.cpp; sourceTree = ""; }; - 89419CCD195701D800BFCA27 /* OzgCCUtility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OzgCCUtility.h; path = ../Classes/OzgCCUtility.h; sourceTree = ""; }; - 89419CCE195701D800BFCA27 /* OzgFileUtility.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = OzgFileUtility.cpp; path = ../Classes/OzgFileUtility.cpp; sourceTree = ""; }; - 89419CCF195701D800BFCA27 /* OzgFileUtility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OzgFileUtility.h; path = ../Classes/OzgFileUtility.h; sourceTree = ""; }; - 89419CD0195701D800BFCA27 /* OzgJoystickLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = OzgJoystickLayer.cpp; path = ../Classes/OzgJoystickLayer.cpp; sourceTree = ""; }; - 89419CD1195701D800BFCA27 /* OzgJoystickLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OzgJoystickLayer.h; path = ../Classes/OzgJoystickLayer.h; sourceTree = ""; }; - 89419CD2195701D800BFCA27 /* RPGBaseSceneLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RPGBaseSceneLayer.cpp; path = ../Classes/RPGBaseSceneLayer.cpp; sourceTree = ""; }; - 89419CD3195701D800BFCA27 /* RPGBaseSceneLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RPGBaseSceneLayer.h; path = ../Classes/RPGBaseSceneLayer.h; sourceTree = ""; }; - 89419CD4195701D800BFCA27 /* RPGBattleMenu.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RPGBattleMenu.cpp; path = ../Classes/RPGBattleMenu.cpp; sourceTree = ""; }; - 89419CD5195701D800BFCA27 /* RPGBattleMenu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RPGBattleMenu.h; path = ../Classes/RPGBattleMenu.h; sourceTree = ""; }; - 89419CD6195701D800BFCA27 /* RPGBattleMonsterSprite.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RPGBattleMonsterSprite.cpp; path = ../Classes/RPGBattleMonsterSprite.cpp; sourceTree = ""; }; - 89419CD7195701D800BFCA27 /* RPGBattleMonsterSprite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RPGBattleMonsterSprite.h; path = ../Classes/RPGBattleMonsterSprite.h; sourceTree = ""; }; - 89419CD8195701D800BFCA27 /* RPGBattlePlayerSprite.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RPGBattlePlayerSprite.cpp; path = ../Classes/RPGBattlePlayerSprite.cpp; sourceTree = ""; }; - 89419CD9195701D800BFCA27 /* RPGBattlePlayerSprite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RPGBattlePlayerSprite.h; path = ../Classes/RPGBattlePlayerSprite.h; sourceTree = ""; }; - 89419CDA195701D800BFCA27 /* RPGBattleSceneLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RPGBattleSceneLayer.cpp; path = ../Classes/RPGBattleSceneLayer.cpp; sourceTree = ""; }; - 89419CDB195701D800BFCA27 /* RPGBattleSceneLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RPGBattleSceneLayer.h; path = ../Classes/RPGBattleSceneLayer.h; sourceTree = ""; }; - 89419CDC195701D800BFCA27 /* RPGComputingResults.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RPGComputingResults.cpp; path = ../Classes/RPGComputingResults.cpp; sourceTree = ""; }; - 89419CDD195701D800BFCA27 /* RPGComputingResults.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RPGComputingResults.h; path = ../Classes/RPGComputingResults.h; sourceTree = ""; }; - 89419CDE195701D800BFCA27 /* RPGData.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RPGData.cpp; path = ../Classes/RPGData.cpp; sourceTree = ""; }; - 89419CDF195701D800BFCA27 /* RPGData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RPGData.h; path = ../Classes/RPGData.h; sourceTree = ""; }; - 89419CE0195701D800BFCA27 /* RPGDialogLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RPGDialogLayer.cpp; path = ../Classes/RPGDialogLayer.cpp; sourceTree = ""; }; - 89419CE1195701D800BFCA27 /* RPGDialogLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RPGDialogLayer.h; path = ../Classes/RPGDialogLayer.h; sourceTree = ""; }; - 89419CE2195701D800BFCA27 /* RPGLoadingSceneLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RPGLoadingSceneLayer.cpp; path = ../Classes/RPGLoadingSceneLayer.cpp; sourceTree = ""; }; - 89419CE3195701D800BFCA27 /* RPGLoadingSceneLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RPGLoadingSceneLayer.h; path = ../Classes/RPGLoadingSceneLayer.h; sourceTree = ""; }; - 89419CE4195701D800BFCA27 /* RPGMapChoicePlayerMenuLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RPGMapChoicePlayerMenuLayer.cpp; path = ../Classes/RPGMapChoicePlayerMenuLayer.cpp; sourceTree = ""; }; - 89419CE5195701D800BFCA27 /* RPGMapChoicePlayerMenuLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RPGMapChoicePlayerMenuLayer.h; path = ../Classes/RPGMapChoicePlayerMenuLayer.h; sourceTree = ""; }; - 89419CE6195701D800BFCA27 /* RPGMapDialogLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RPGMapDialogLayer.cpp; path = ../Classes/RPGMapDialogLayer.cpp; sourceTree = ""; }; - 89419CE7195701D800BFCA27 /* RPGMapDialogLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RPGMapDialogLayer.h; path = ../Classes/RPGMapDialogLayer.h; sourceTree = ""; }; - 89419CE8195701D800BFCA27 /* RPGMapEquipMenuLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RPGMapEquipMenuLayer.cpp; path = ../Classes/RPGMapEquipMenuLayer.cpp; sourceTree = ""; }; - 89419CE9195701D800BFCA27 /* RPGMapEquipMenuLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RPGMapEquipMenuLayer.h; path = ../Classes/RPGMapEquipMenuLayer.h; sourceTree = ""; }; - 89419CEA195701D800BFCA27 /* RPGMapItemsMenuLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RPGMapItemsMenuLayer.cpp; path = ../Classes/RPGMapItemsMenuLayer.cpp; sourceTree = ""; }; - 89419CEB195701D800BFCA27 /* RPGMapItemsMenuLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RPGMapItemsMenuLayer.h; path = ../Classes/RPGMapItemsMenuLayer.h; sourceTree = ""; }; - 89419CEC195701D800BFCA27 /* RPGMapMenuLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RPGMapMenuLayer.cpp; path = ../Classes/RPGMapMenuLayer.cpp; sourceTree = ""; }; - 89419CED195701D800BFCA27 /* RPGMapMenuLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RPGMapMenuLayer.h; path = ../Classes/RPGMapMenuLayer.h; sourceTree = ""; }; - 89419CEE195701D800BFCA27 /* RPGMapNPCRoleSprite.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RPGMapNPCRoleSprite.cpp; path = ../Classes/RPGMapNPCRoleSprite.cpp; sourceTree = ""; }; - 89419CEF195701D800BFCA27 /* RPGMapNPCRoleSprite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RPGMapNPCRoleSprite.h; path = ../Classes/RPGMapNPCRoleSprite.h; sourceTree = ""; }; - 89419CF0195701D800BFCA27 /* RPGMapRoleSprite.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RPGMapRoleSprite.cpp; path = ../Classes/RPGMapRoleSprite.cpp; sourceTree = ""; }; - 89419CF1195701D800BFCA27 /* RPGMapRoleSprite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RPGMapRoleSprite.h; path = ../Classes/RPGMapRoleSprite.h; sourceTree = ""; }; - 89419CF2195701D800BFCA27 /* RPGMapSceneLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RPGMapSceneLayer.cpp; path = ../Classes/RPGMapSceneLayer.cpp; sourceTree = ""; }; - 89419CF3195701D800BFCA27 /* RPGMapSceneLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RPGMapSceneLayer.h; path = ../Classes/RPGMapSceneLayer.h; sourceTree = ""; }; - 89419CF4195701D800BFCA27 /* RPGMapSkillMenuLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RPGMapSkillMenuLayer.cpp; path = ../Classes/RPGMapSkillMenuLayer.cpp; sourceTree = ""; }; - 89419CF5195701D800BFCA27 /* RPGMapSkillMenuLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RPGMapSkillMenuLayer.h; path = ../Classes/RPGMapSkillMenuLayer.h; sourceTree = ""; }; - 89419CF6195701D800BFCA27 /* RPGMapStatusMenuLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RPGMapStatusMenuLayer.cpp; path = ../Classes/RPGMapStatusMenuLayer.cpp; sourceTree = ""; }; - 89419CF7195701D800BFCA27 /* RPGMapStatusMenuLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RPGMapStatusMenuLayer.h; path = ../Classes/RPGMapStatusMenuLayer.h; sourceTree = ""; }; - 89419CF8195701D800BFCA27 /* RPGResultsLogic.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RPGResultsLogic.cpp; path = ../Classes/RPGResultsLogic.cpp; sourceTree = ""; }; - 89419CF9195701D800BFCA27 /* RPGResultsLogic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RPGResultsLogic.h; path = ../Classes/RPGResultsLogic.h; sourceTree = ""; }; - 89419CFA195701D800BFCA27 /* RPGStartSceneLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RPGStartSceneLayer.cpp; path = ../Classes/RPGStartSceneLayer.cpp; sourceTree = ""; }; - 89419CFB195701D800BFCA27 /* RPGStartSceneLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RPGStartSceneLayer.h; path = ../Classes/RPGStartSceneLayer.h; sourceTree = ""; }; + 8974E3CC1A43069800D343A3 /* joystick.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = joystick.plist; sourceTree = ""; }; + 8974E3CD1A43069800D343A3 /* joystick.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = joystick.png; sourceTree = ""; }; + 8974E3CE1A43069800D343A3 /* main.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = main.plist; sourceTree = ""; }; + 8974E3CF1A43069800D343A3 /* main.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = main.png; sourceTree = ""; }; + 8974E3D01A43069800D343A3 /* map_01.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_01.tmx; sourceTree = ""; }; + 8974E3D11A43069800D343A3 /* map_02.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_02.tmx; sourceTree = ""; }; + 8974E3D21A43069800D343A3 /* map_03.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_03.tmx; sourceTree = ""; }; + 8974E3D31A43069800D343A3 /* map_menu1_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu1_style1.tmx; sourceTree = ""; }; + 8974E3D41A43069800D343A3 /* map_menu1_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu1_style2.tmx; sourceTree = ""; }; + 8974E3D51A43069800D343A3 /* map_menu1_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu1_style3.tmx; sourceTree = ""; }; + 8974E3D61A43069800D343A3 /* map_menu2_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu2_style1.tmx; sourceTree = ""; }; + 8974E3D71A43069800D343A3 /* map_menu2_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu2_style2.tmx; sourceTree = ""; }; + 8974E3D81A43069800D343A3 /* map_menu2_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu2_style3.tmx; sourceTree = ""; }; + 8974E3D91A43069800D343A3 /* map_menu3_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu3_style1.tmx; sourceTree = ""; }; + 8974E3DA1A43069800D343A3 /* map_menu3_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu3_style2.tmx; sourceTree = ""; }; + 8974E3DB1A43069800D343A3 /* map_menu3_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu3_style3.tmx; sourceTree = ""; }; + 8974E3DC1A43069800D343A3 /* map_menu4_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu4_style1.tmx; sourceTree = ""; }; + 8974E3DD1A43069800D343A3 /* map_menu4_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu4_style2.tmx; sourceTree = ""; }; + 8974E3DE1A43069800D343A3 /* map_menu4_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu4_style3.tmx; sourceTree = ""; }; + 8974E3DF1A43069800D343A3 /* map_menu5_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu5_style1.tmx; sourceTree = ""; }; + 8974E3E01A43069800D343A3 /* map_menu5_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu5_style2.tmx; sourceTree = ""; }; + 8974E3E11A43069800D343A3 /* map_menu5_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = map_menu5_style3.tmx; sourceTree = ""; }; + 8974E3E21A43069800D343A3 /* map.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = map.png; sourceTree = ""; }; + 8974E3E31A43069800D343A3 /* monsters.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = monsters.plist; sourceTree = ""; }; + 8974E3E41A43069800D343A3 /* monsters.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = monsters.png; sourceTree = ""; }; + 8974E3E51A43069800D343A3 /* scene_battle_cns.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = scene_battle_cns.plist; sourceTree = ""; }; + 8974E3E61A43069800D343A3 /* scene_loading_cns.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = scene_loading_cns.plist; sourceTree = ""; }; + 8974E3E71A43069800D343A3 /* scene_map_cns.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = scene_map_cns.plist; sourceTree = ""; }; + 8974E3E81A43069800D343A3 /* scene_start_cns.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = scene_start_cns.plist; sourceTree = ""; }; + 8974E3E91A43069800D343A3 /* select_player_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = select_player_style1.tmx; sourceTree = ""; }; + 8974E3EA1A43069800D343A3 /* select_player_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = select_player_style2.tmx; sourceTree = ""; }; + 8974E3EB1A43069800D343A3 /* select_player_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = select_player_style3.tmx; sourceTree = ""; }; + 8974E3EC1A43069800D343A3 /* shop_list_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = shop_list_style1.tmx; sourceTree = ""; }; + 8974E3ED1A43069800D343A3 /* shop_list_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = shop_list_style2.tmx; sourceTree = ""; }; + 8974E3EE1A43069800D343A3 /* shop_list_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = shop_list_style3.tmx; sourceTree = ""; }; + 8974E3EF1A43069800D343A3 /* shop_menu_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = shop_menu_style1.tmx; sourceTree = ""; }; + 8974E3F01A43069800D343A3 /* shop_menu_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = shop_menu_style2.tmx; sourceTree = ""; }; + 8974E3F11A43069800D343A3 /* shop_menu_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = shop_menu_style3.tmx; sourceTree = ""; }; + 8974E3F21A43069800D343A3 /* skill_cure.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = skill_cure.plist; sourceTree = ""; }; + 8974E3F31A43069800D343A3 /* skill_fire.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = skill_fire.plist; sourceTree = ""; }; + 8974E3F41A43069800D343A3 /* start_bg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = start_bg.png; sourceTree = ""; }; + 8974E3F51A43069800D343A3 /* use_item.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = use_item.plist; sourceTree = ""; }; + 8974E3F61A43069800D343A3 /* Window_a_00.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Window_a_00.png; sourceTree = ""; }; + 8974E3F71A43069800D343A3 /* Window_b_00.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Window_b_00.png; sourceTree = ""; }; + 8974E3F81A43069800D343A3 /* Window_c_00.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Window_c_00.png; sourceTree = ""; }; + 8974E4261A4306A700D343A3 /* actor4_0.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor4_0.png; sourceTree = ""; }; + 8974E4271A4306A700D343A3 /* actor4_1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor4_1.png; sourceTree = ""; }; + 8974E4281A4306A700D343A3 /* actor4_2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor4_2.png; sourceTree = ""; }; + 8974E4291A4306A700D343A3 /* actor4_3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor4_3.png; sourceTree = ""; }; + 8974E42A1A4306A700D343A3 /* actor4_4.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor4_4.png; sourceTree = ""; }; + 8974E42B1A4306A700D343A3 /* actor5_0.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor5_0.png; sourceTree = ""; }; + 8974E42C1A4306A700D343A3 /* actor5_1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor5_1.png; sourceTree = ""; }; + 8974E42D1A4306A700D343A3 /* actor5_2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor5_2.png; sourceTree = ""; }; + 8974E42E1A4306A700D343A3 /* actor5_3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor5_3.png; sourceTree = ""; }; + 8974E42F1A4306A700D343A3 /* actor5_4.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor5_4.png; sourceTree = ""; }; + 8974E4301A4306A700D343A3 /* actor7_0.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor7_0.png; sourceTree = ""; }; + 8974E4311A4306A700D343A3 /* actor7_1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor7_1.png; sourceTree = ""; }; + 8974E4321A4306A700D343A3 /* actor7_2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor7_2.png; sourceTree = ""; }; + 8974E4331A4306A700D343A3 /* actor7_3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor7_3.png; sourceTree = ""; }; + 8974E4341A4306A700D343A3 /* actor7_4.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor7_4.png; sourceTree = ""; }; + 8974E4351A4306A700D343A3 /* actor8_0.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor8_0.png; sourceTree = ""; }; + 8974E4361A4306A700D343A3 /* actor8_1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor8_1.png; sourceTree = ""; }; + 8974E4371A4306A700D343A3 /* actor8_2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor8_2.png; sourceTree = ""; }; + 8974E4381A4306A700D343A3 /* actor8_3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor8_3.png; sourceTree = ""; }; + 8974E4391A4306A700D343A3 /* actor8_4.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor8_4.png; sourceTree = ""; }; + 8974E43A1A4306A700D343A3 /* actor111.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor111.png; sourceTree = ""; }; + 8974E43B1A4306A700D343A3 /* actor113.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor113.png; sourceTree = ""; }; + 8974E43C1A4306A700D343A3 /* actor114.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor114.png; sourceTree = ""; }; + 8974E43D1A4306A700D343A3 /* actor115.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor115.png; sourceTree = ""; }; + 8974E43E1A4306A700D343A3 /* actor117.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor117.png; sourceTree = ""; }; + 8974E43F1A4306A700D343A3 /* actor120.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = actor120.png; sourceTree = ""; }; + 8974E4401A4306A700D343A3 /* alert_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = alert_style1.tmx; sourceTree = ""; }; + 8974E4411A4306A700D343A3 /* alert_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = alert_style2.tmx; sourceTree = ""; }; + 8974E4421A4306A700D343A3 /* alert_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = alert_style3.tmx; sourceTree = ""; }; + 8974E4431A4306A700D343A3 /* attack_damage.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = attack_damage.plist; sourceTree = ""; }; + 8974E4441A4306A700D343A3 /* attack_damage.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = attack_damage.png; sourceTree = ""; }; + 8974E4451A4306A700D343A3 /* attack1.ExportJson */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = attack1.ExportJson; sourceTree = ""; }; + 8974E4461A4306A700D343A3 /* attack2.ExportJson */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = attack2.ExportJson; sourceTree = ""; }; + 8974E4471A4306A700D343A3 /* attack3.ExportJson */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = attack3.ExportJson; sourceTree = ""; }; + 8974E4481A4306A700D343A3 /* attack4.ExportJson */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = attack4.ExportJson; sourceTree = ""; }; + 8974E4491A4306A700D343A3 /* attack10.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = attack10.plist; sourceTree = ""; }; + 8974E44A1A4306A700D343A3 /* attack10.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = attack10.png; sourceTree = ""; }; + 8974E44B1A4306A700D343A3 /* attack20.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = attack20.plist; sourceTree = ""; }; + 8974E44C1A4306A700D343A3 /* attack20.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = attack20.png; sourceTree = ""; }; + 8974E44D1A4306A700D343A3 /* attack30.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = attack30.plist; sourceTree = ""; }; + 8974E44E1A4306A700D343A3 /* attack30.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = attack30.png; sourceTree = ""; }; + 8974E44F1A4306A700D343A3 /* attack40.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = attack40.plist; sourceTree = ""; }; + 8974E4501A4306A700D343A3 /* attack40.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = attack40.png; sourceTree = ""; }; + 8974E4511A4306A700D343A3 /* audio_battle_attack1.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = audio_battle_attack1.wav; sourceTree = ""; }; + 8974E4521A4306A700D343A3 /* audio_battle_attack2.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = audio_battle_attack2.wav; sourceTree = ""; }; + 8974E4531A4306A700D343A3 /* audio_battle_end.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = audio_battle_end.mp3; sourceTree = ""; }; + 8974E4541A4306A700D343A3 /* audio_battle_lose.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = audio_battle_lose.mp3; sourceTree = ""; }; + 8974E4551A4306A700D343A3 /* audio_battle_menu.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = audio_battle_menu.wav; sourceTree = ""; }; + 8974E4561A4306A700D343A3 /* audio_battle_start.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = audio_battle_start.wav; sourceTree = ""; }; + 8974E4571A4306A700D343A3 /* audio_battle.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = audio_battle.mp3; sourceTree = ""; }; + 8974E4581A4306A700D343A3 /* audio_effect_btn.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = audio_effect_btn.wav; sourceTree = ""; }; + 8974E4591A4306A700D343A3 /* audio_inn.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = audio_inn.mp3; sourceTree = ""; }; + 8974E45A1A4306A700D343A3 /* audio_map_01.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = audio_map_01.mp3; sourceTree = ""; }; + 8974E45B1A4306A700D343A3 /* audio_map_02.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = audio_map_02.mp3; sourceTree = ""; }; + 8974E45C1A4306A700D343A3 /* audio_map_03.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = audio_map_03.mp3; sourceTree = ""; }; + 8974E45D1A4306A700D343A3 /* audio_skill_cure.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = audio_skill_cure.wav; sourceTree = ""; }; + 8974E45E1A4306A700D343A3 /* audio_skill_fire.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = audio_skill_fire.wav; sourceTree = ""; }; + 8974E45F1A4306A700D343A3 /* audio_start_btn.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = audio_start_btn.wav; sourceTree = ""; }; + 8974E4601A4306A700D343A3 /* audio_start.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = audio_start.mp3; sourceTree = ""; }; + 8974E4611A4306A700D343A3 /* audio_use_items.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = audio_use_items.wav; sourceTree = ""; }; + 8974E4621A4306A700D343A3 /* battle_battlemenu_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = battle_battlemenu_style1.tmx; sourceTree = ""; }; + 8974E4631A4306A700D343A3 /* battle_battlemenu_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = battle_battlemenu_style2.tmx; sourceTree = ""; }; + 8974E4641A4306A700D343A3 /* battle_battlemenu_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = battle_battlemenu_style3.tmx; sourceTree = ""; }; + 8974E4651A4306A700D343A3 /* battle_bg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = battle_bg.png; sourceTree = ""; }; + 8974E4661A4306A700D343A3 /* battle_menu_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = battle_menu_style1.tmx; sourceTree = ""; }; + 8974E4671A4306A700D343A3 /* battle_menu_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = battle_menu_style2.tmx; sourceTree = ""; }; + 8974E4681A4306A700D343A3 /* battle_menu_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = battle_menu_style3.tmx; sourceTree = ""; }; + 8974E4691A4306A700D343A3 /* battle_msg_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = battle_msg_style1.tmx; sourceTree = ""; }; + 8974E46A1A4306A700D343A3 /* battle_msg_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = battle_msg_style2.tmx; sourceTree = ""; }; + 8974E46B1A4306A700D343A3 /* battle_msg_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = battle_msg_style3.tmx; sourceTree = ""; }; + 8974E46C1A4306A700D343A3 /* battle_select_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = battle_select_style1.tmx; sourceTree = ""; }; + 8974E46D1A4306A700D343A3 /* battle_select_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = battle_select_style2.tmx; sourceTree = ""; }; + 8974E46E1A4306A700D343A3 /* battle_select_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = battle_select_style3.tmx; sourceTree = ""; }; + 8974E46F1A4306A700D343A3 /* db.sys */ = {isa = PBXFileReference; lastKnownFileType = file; path = db.sys; sourceTree = ""; }; + 8974E4701A4306A700D343A3 /* dialog_style1.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = dialog_style1.tmx; sourceTree = ""; }; + 8974E4711A4306A700D343A3 /* dialog_style2.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = dialog_style2.tmx; sourceTree = ""; }; + 8974E4721A4306A700D343A3 /* dialog_style3.tmx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = dialog_style3.tmx; sourceTree = ""; }; + 8974E4C01A43070300D343A3 /* fzcyjt.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = fzcyjt.ttf; path = fonts/fzcyjt.ttf; sourceTree = ""; }; + 8974E4C21A43071300D343A3 /* GameCfg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GameCfg.h; path = ../Classes/GameCfg.h; sourceTree = ""; }; + 8974E4C31A43071300D343A3 /* OzgCCScrollBgNode.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = OzgCCScrollBgNode.cpp; path = ../Classes/OzgCCScrollBgNode.cpp; sourceTree = ""; }; + 8974E4C41A43071300D343A3 /* OzgCCScrollBgNode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OzgCCScrollBgNode.h; path = ../Classes/OzgCCScrollBgNode.h; sourceTree = ""; }; + 8974E4C51A43071300D343A3 /* OzgCCUtility.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = OzgCCUtility.cpp; path = ../Classes/OzgCCUtility.cpp; sourceTree = ""; }; + 8974E4C61A43071300D343A3 /* OzgCCUtility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OzgCCUtility.h; path = ../Classes/OzgCCUtility.h; sourceTree = ""; }; + 8974E4C71A43071300D343A3 /* OzgFileUtility.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = OzgFileUtility.cpp; path = ../Classes/OzgFileUtility.cpp; sourceTree = ""; }; + 8974E4C81A43071300D343A3 /* OzgFileUtility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OzgFileUtility.h; path = ../Classes/OzgFileUtility.h; sourceTree = ""; }; + 8974E4C91A43071300D343A3 /* OzgJoystickLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = OzgJoystickLayer.cpp; path = ../Classes/OzgJoystickLayer.cpp; sourceTree = ""; }; + 8974E4CA1A43071300D343A3 /* OzgJoystickLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OzgJoystickLayer.h; path = ../Classes/OzgJoystickLayer.h; sourceTree = ""; }; + 8974E4CB1A43071300D343A3 /* RPGBaseSceneLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RPGBaseSceneLayer.cpp; path = ../Classes/RPGBaseSceneLayer.cpp; sourceTree = ""; }; + 8974E4CC1A43071300D343A3 /* RPGBaseSceneLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RPGBaseSceneLayer.h; path = ../Classes/RPGBaseSceneLayer.h; sourceTree = ""; }; + 8974E4CD1A43071300D343A3 /* RPGBattleMenu.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RPGBattleMenu.cpp; path = ../Classes/RPGBattleMenu.cpp; sourceTree = ""; }; + 8974E4CE1A43071300D343A3 /* RPGBattleMenu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RPGBattleMenu.h; path = ../Classes/RPGBattleMenu.h; sourceTree = ""; }; + 8974E4CF1A43071300D343A3 /* RPGBattleMonsterSprite.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RPGBattleMonsterSprite.cpp; path = ../Classes/RPGBattleMonsterSprite.cpp; sourceTree = ""; }; + 8974E4D01A43071300D343A3 /* RPGBattleMonsterSprite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RPGBattleMonsterSprite.h; path = ../Classes/RPGBattleMonsterSprite.h; sourceTree = ""; }; + 8974E4D11A43071300D343A3 /* RPGBattlePlayerSprite.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RPGBattlePlayerSprite.cpp; path = ../Classes/RPGBattlePlayerSprite.cpp; sourceTree = ""; }; + 8974E4D21A43071300D343A3 /* RPGBattlePlayerSprite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RPGBattlePlayerSprite.h; path = ../Classes/RPGBattlePlayerSprite.h; sourceTree = ""; }; + 8974E4D31A43071300D343A3 /* RPGBattleSceneLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RPGBattleSceneLayer.cpp; path = ../Classes/RPGBattleSceneLayer.cpp; sourceTree = ""; }; + 8974E4D41A43071300D343A3 /* RPGBattleSceneLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RPGBattleSceneLayer.h; path = ../Classes/RPGBattleSceneLayer.h; sourceTree = ""; }; + 8974E4D51A43071300D343A3 /* RPGComputingResults.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RPGComputingResults.cpp; path = ../Classes/RPGComputingResults.cpp; sourceTree = ""; }; + 8974E4D61A43071300D343A3 /* RPGComputingResults.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RPGComputingResults.h; path = ../Classes/RPGComputingResults.h; sourceTree = ""; }; + 8974E4D71A43071300D343A3 /* RPGData.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RPGData.cpp; path = ../Classes/RPGData.cpp; sourceTree = ""; }; + 8974E4D81A43071300D343A3 /* RPGData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RPGData.h; path = ../Classes/RPGData.h; sourceTree = ""; }; + 8974E4D91A43071300D343A3 /* RPGDialogLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RPGDialogLayer.cpp; path = ../Classes/RPGDialogLayer.cpp; sourceTree = ""; }; + 8974E4DA1A43071300D343A3 /* RPGDialogLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RPGDialogLayer.h; path = ../Classes/RPGDialogLayer.h; sourceTree = ""; }; + 8974E4DB1A43071300D343A3 /* RPGLoadingSceneLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RPGLoadingSceneLayer.cpp; path = ../Classes/RPGLoadingSceneLayer.cpp; sourceTree = ""; }; + 8974E4DC1A43071300D343A3 /* RPGLoadingSceneLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RPGLoadingSceneLayer.h; path = ../Classes/RPGLoadingSceneLayer.h; sourceTree = ""; }; + 8974E4DD1A43071300D343A3 /* RPGMapChoicePlayerMenuLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RPGMapChoicePlayerMenuLayer.cpp; path = ../Classes/RPGMapChoicePlayerMenuLayer.cpp; sourceTree = ""; }; + 8974E4DE1A43071300D343A3 /* RPGMapChoicePlayerMenuLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RPGMapChoicePlayerMenuLayer.h; path = ../Classes/RPGMapChoicePlayerMenuLayer.h; sourceTree = ""; }; + 8974E4DF1A43071300D343A3 /* RPGMapDialogLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RPGMapDialogLayer.cpp; path = ../Classes/RPGMapDialogLayer.cpp; sourceTree = ""; }; + 8974E4E01A43071300D343A3 /* RPGMapDialogLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RPGMapDialogLayer.h; path = ../Classes/RPGMapDialogLayer.h; sourceTree = ""; }; + 8974E4E11A43071300D343A3 /* RPGMapEquipMenuLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RPGMapEquipMenuLayer.cpp; path = ../Classes/RPGMapEquipMenuLayer.cpp; sourceTree = ""; }; + 8974E4E21A43071300D343A3 /* RPGMapEquipMenuLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RPGMapEquipMenuLayer.h; path = ../Classes/RPGMapEquipMenuLayer.h; sourceTree = ""; }; + 8974E4E31A43071300D343A3 /* RPGMapItemsMenuLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RPGMapItemsMenuLayer.cpp; path = ../Classes/RPGMapItemsMenuLayer.cpp; sourceTree = ""; }; + 8974E4E41A43071300D343A3 /* RPGMapItemsMenuLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RPGMapItemsMenuLayer.h; path = ../Classes/RPGMapItemsMenuLayer.h; sourceTree = ""; }; + 8974E4E51A43071300D343A3 /* RPGMapMenuLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RPGMapMenuLayer.cpp; path = ../Classes/RPGMapMenuLayer.cpp; sourceTree = ""; }; + 8974E4E61A43071300D343A3 /* RPGMapMenuLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RPGMapMenuLayer.h; path = ../Classes/RPGMapMenuLayer.h; sourceTree = ""; }; + 8974E4E71A43071300D343A3 /* RPGMapNPCRoleSprite.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RPGMapNPCRoleSprite.cpp; path = ../Classes/RPGMapNPCRoleSprite.cpp; sourceTree = ""; }; + 8974E4E81A43071300D343A3 /* RPGMapNPCRoleSprite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RPGMapNPCRoleSprite.h; path = ../Classes/RPGMapNPCRoleSprite.h; sourceTree = ""; }; + 8974E4E91A43071300D343A3 /* RPGMapRoleSprite.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RPGMapRoleSprite.cpp; path = ../Classes/RPGMapRoleSprite.cpp; sourceTree = ""; }; + 8974E4EA1A43071300D343A3 /* RPGMapRoleSprite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RPGMapRoleSprite.h; path = ../Classes/RPGMapRoleSprite.h; sourceTree = ""; }; + 8974E4EB1A43071300D343A3 /* RPGMapSceneLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RPGMapSceneLayer.cpp; path = ../Classes/RPGMapSceneLayer.cpp; sourceTree = ""; }; + 8974E4EC1A43071300D343A3 /* RPGMapSceneLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RPGMapSceneLayer.h; path = ../Classes/RPGMapSceneLayer.h; sourceTree = ""; }; + 8974E4ED1A43071300D343A3 /* RPGMapSkillMenuLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RPGMapSkillMenuLayer.cpp; path = ../Classes/RPGMapSkillMenuLayer.cpp; sourceTree = ""; }; + 8974E4EE1A43071300D343A3 /* RPGMapSkillMenuLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RPGMapSkillMenuLayer.h; path = ../Classes/RPGMapSkillMenuLayer.h; sourceTree = ""; }; + 8974E4EF1A43071300D343A3 /* RPGMapStatusMenuLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RPGMapStatusMenuLayer.cpp; path = ../Classes/RPGMapStatusMenuLayer.cpp; sourceTree = ""; }; + 8974E4F01A43071300D343A3 /* RPGMapStatusMenuLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RPGMapStatusMenuLayer.h; path = ../Classes/RPGMapStatusMenuLayer.h; sourceTree = ""; }; + 8974E4F11A43071300D343A3 /* RPGResultsLogic.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RPGResultsLogic.cpp; path = ../Classes/RPGResultsLogic.cpp; sourceTree = ""; }; + 8974E4F21A43071300D343A3 /* RPGResultsLogic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RPGResultsLogic.h; path = ../Classes/RPGResultsLogic.h; sourceTree = ""; }; + 8974E4F31A43071300D343A3 /* RPGStartSceneLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RPGStartSceneLayer.cpp; path = ../Classes/RPGStartSceneLayer.cpp; sourceTree = ""; }; + 8974E4F41A43071300D343A3 /* RPGStartSceneLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RPGStartSceneLayer.h; path = ../Classes/RPGStartSceneLayer.h; sourceTree = ""; }; + 8974E50F1A43072E00D343A3 /* CppSQLite3.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CppSQLite3.cpp; path = ../libs/CppSQLite3.cpp; sourceTree = ""; }; + 8974E5101A43072E00D343A3 /* CppSQLite3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CppSQLite3.h; path = ../libs/CppSQLite3.h; sourceTree = ""; }; + 8974E5131A43074700D343A3 /* Array.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Array.cpp; path = ../libs/JsonBox/src/Array.cpp; sourceTree = ""; }; + 8974E5141A43074700D343A3 /* Convert.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Convert.cpp; path = ../libs/JsonBox/src/Convert.cpp; sourceTree = ""; }; + 8974E5151A43074700D343A3 /* Escaper.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Escaper.cpp; path = ../libs/JsonBox/src/Escaper.cpp; sourceTree = ""; }; + 8974E5161A43074700D343A3 /* IndentCanceller.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = IndentCanceller.cpp; path = ../libs/JsonBox/src/IndentCanceller.cpp; sourceTree = ""; }; + 8974E5171A43074700D343A3 /* Indenter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Indenter.cpp; path = ../libs/JsonBox/src/Indenter.cpp; sourceTree = ""; }; + 8974E5181A43074700D343A3 /* Object.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Object.cpp; path = ../libs/JsonBox/src/Object.cpp; sourceTree = ""; }; + 8974E5191A43074700D343A3 /* SolidusEscaper.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = SolidusEscaper.cpp; path = ../libs/JsonBox/src/SolidusEscaper.cpp; sourceTree = ""; }; + 8974E51A1A43074700D343A3 /* Value.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Value.cpp; path = ../libs/JsonBox/src/Value.cpp; sourceTree = ""; }; 8C583FA8169DB6D500F63A10 /* CCEditBox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CCEditBox.cpp; path = CCEditBox/CCEditBox.cpp; sourceTree = ""; }; 8C583FA9169DB6D500F63A10 /* CCEditBox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CCEditBox.h; path = CCEditBox/CCEditBox.h; sourceTree = ""; }; 8C583FAA169DB6D500F63A10 /* CCEditBoxImpl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CCEditBoxImpl.h; path = CCEditBox/CCEditBoxImpl.h; sourceTree = ""; }; @@ -1158,57 +1145,57 @@ 15AA9C4015B7EC450033D6C2 /* Classes */ = { isa = PBXGroup; children = ( - 89419CC9195701D800BFCA27 /* GameCfg.h */, - 89419CCA195701D800BFCA27 /* OzgCCScrollBgNode.cpp */, - 89419CCB195701D800BFCA27 /* OzgCCScrollBgNode.h */, - 89419CCC195701D800BFCA27 /* OzgCCUtility.cpp */, - 89419CCD195701D800BFCA27 /* OzgCCUtility.h */, - 89419CCE195701D800BFCA27 /* OzgFileUtility.cpp */, - 89419CCF195701D800BFCA27 /* OzgFileUtility.h */, - 89419CD0195701D800BFCA27 /* OzgJoystickLayer.cpp */, - 89419CD1195701D800BFCA27 /* OzgJoystickLayer.h */, - 89419CD2195701D800BFCA27 /* RPGBaseSceneLayer.cpp */, - 89419CD3195701D800BFCA27 /* RPGBaseSceneLayer.h */, - 89419CD4195701D800BFCA27 /* RPGBattleMenu.cpp */, - 89419CD5195701D800BFCA27 /* RPGBattleMenu.h */, - 89419CD6195701D800BFCA27 /* RPGBattleMonsterSprite.cpp */, - 89419CD7195701D800BFCA27 /* RPGBattleMonsterSprite.h */, - 89419CD8195701D800BFCA27 /* RPGBattlePlayerSprite.cpp */, - 89419CD9195701D800BFCA27 /* RPGBattlePlayerSprite.h */, - 89419CDA195701D800BFCA27 /* RPGBattleSceneLayer.cpp */, - 89419CDB195701D800BFCA27 /* RPGBattleSceneLayer.h */, - 89419CDC195701D800BFCA27 /* RPGComputingResults.cpp */, - 89419CDD195701D800BFCA27 /* RPGComputingResults.h */, - 89419CDE195701D800BFCA27 /* RPGData.cpp */, - 89419CDF195701D800BFCA27 /* RPGData.h */, - 89419CE0195701D800BFCA27 /* RPGDialogLayer.cpp */, - 89419CE1195701D800BFCA27 /* RPGDialogLayer.h */, - 89419CE2195701D800BFCA27 /* RPGLoadingSceneLayer.cpp */, - 89419CE3195701D800BFCA27 /* RPGLoadingSceneLayer.h */, - 89419CE4195701D800BFCA27 /* RPGMapChoicePlayerMenuLayer.cpp */, - 89419CE5195701D800BFCA27 /* RPGMapChoicePlayerMenuLayer.h */, - 89419CE6195701D800BFCA27 /* RPGMapDialogLayer.cpp */, - 89419CE7195701D800BFCA27 /* RPGMapDialogLayer.h */, - 89419CE8195701D800BFCA27 /* RPGMapEquipMenuLayer.cpp */, - 89419CE9195701D800BFCA27 /* RPGMapEquipMenuLayer.h */, - 89419CEA195701D800BFCA27 /* RPGMapItemsMenuLayer.cpp */, - 89419CEB195701D800BFCA27 /* RPGMapItemsMenuLayer.h */, - 89419CEC195701D800BFCA27 /* RPGMapMenuLayer.cpp */, - 89419CED195701D800BFCA27 /* RPGMapMenuLayer.h */, - 89419CEE195701D800BFCA27 /* RPGMapNPCRoleSprite.cpp */, - 89419CEF195701D800BFCA27 /* RPGMapNPCRoleSprite.h */, - 89419CF0195701D800BFCA27 /* RPGMapRoleSprite.cpp */, - 89419CF1195701D800BFCA27 /* RPGMapRoleSprite.h */, - 89419CF2195701D800BFCA27 /* RPGMapSceneLayer.cpp */, - 89419CF3195701D800BFCA27 /* RPGMapSceneLayer.h */, - 89419CF4195701D800BFCA27 /* RPGMapSkillMenuLayer.cpp */, - 89419CF5195701D800BFCA27 /* RPGMapSkillMenuLayer.h */, - 89419CF6195701D800BFCA27 /* RPGMapStatusMenuLayer.cpp */, - 89419CF7195701D800BFCA27 /* RPGMapStatusMenuLayer.h */, - 89419CF8195701D800BFCA27 /* RPGResultsLogic.cpp */, - 89419CF9195701D800BFCA27 /* RPGResultsLogic.h */, - 89419CFA195701D800BFCA27 /* RPGStartSceneLayer.cpp */, - 89419CFB195701D800BFCA27 /* RPGStartSceneLayer.h */, + 8974E4C21A43071300D343A3 /* GameCfg.h */, + 8974E4C31A43071300D343A3 /* OzgCCScrollBgNode.cpp */, + 8974E4C41A43071300D343A3 /* OzgCCScrollBgNode.h */, + 8974E4C51A43071300D343A3 /* OzgCCUtility.cpp */, + 8974E4C61A43071300D343A3 /* OzgCCUtility.h */, + 8974E4C71A43071300D343A3 /* OzgFileUtility.cpp */, + 8974E4C81A43071300D343A3 /* OzgFileUtility.h */, + 8974E4C91A43071300D343A3 /* OzgJoystickLayer.cpp */, + 8974E4CA1A43071300D343A3 /* OzgJoystickLayer.h */, + 8974E4CB1A43071300D343A3 /* RPGBaseSceneLayer.cpp */, + 8974E4CC1A43071300D343A3 /* RPGBaseSceneLayer.h */, + 8974E4CD1A43071300D343A3 /* RPGBattleMenu.cpp */, + 8974E4CE1A43071300D343A3 /* RPGBattleMenu.h */, + 8974E4CF1A43071300D343A3 /* RPGBattleMonsterSprite.cpp */, + 8974E4D01A43071300D343A3 /* RPGBattleMonsterSprite.h */, + 8974E4D11A43071300D343A3 /* RPGBattlePlayerSprite.cpp */, + 8974E4D21A43071300D343A3 /* RPGBattlePlayerSprite.h */, + 8974E4D31A43071300D343A3 /* RPGBattleSceneLayer.cpp */, + 8974E4D41A43071300D343A3 /* RPGBattleSceneLayer.h */, + 8974E4D51A43071300D343A3 /* RPGComputingResults.cpp */, + 8974E4D61A43071300D343A3 /* RPGComputingResults.h */, + 8974E4D71A43071300D343A3 /* RPGData.cpp */, + 8974E4D81A43071300D343A3 /* RPGData.h */, + 8974E4D91A43071300D343A3 /* RPGDialogLayer.cpp */, + 8974E4DA1A43071300D343A3 /* RPGDialogLayer.h */, + 8974E4DB1A43071300D343A3 /* RPGLoadingSceneLayer.cpp */, + 8974E4DC1A43071300D343A3 /* RPGLoadingSceneLayer.h */, + 8974E4DD1A43071300D343A3 /* RPGMapChoicePlayerMenuLayer.cpp */, + 8974E4DE1A43071300D343A3 /* RPGMapChoicePlayerMenuLayer.h */, + 8974E4DF1A43071300D343A3 /* RPGMapDialogLayer.cpp */, + 8974E4E01A43071300D343A3 /* RPGMapDialogLayer.h */, + 8974E4E11A43071300D343A3 /* RPGMapEquipMenuLayer.cpp */, + 8974E4E21A43071300D343A3 /* RPGMapEquipMenuLayer.h */, + 8974E4E31A43071300D343A3 /* RPGMapItemsMenuLayer.cpp */, + 8974E4E41A43071300D343A3 /* RPGMapItemsMenuLayer.h */, + 8974E4E51A43071300D343A3 /* RPGMapMenuLayer.cpp */, + 8974E4E61A43071300D343A3 /* RPGMapMenuLayer.h */, + 8974E4E71A43071300D343A3 /* RPGMapNPCRoleSprite.cpp */, + 8974E4E81A43071300D343A3 /* RPGMapNPCRoleSprite.h */, + 8974E4E91A43071300D343A3 /* RPGMapRoleSprite.cpp */, + 8974E4EA1A43071300D343A3 /* RPGMapRoleSprite.h */, + 8974E4EB1A43071300D343A3 /* RPGMapSceneLayer.cpp */, + 8974E4EC1A43071300D343A3 /* RPGMapSceneLayer.h */, + 8974E4ED1A43071300D343A3 /* RPGMapSkillMenuLayer.cpp */, + 8974E4EE1A43071300D343A3 /* RPGMapSkillMenuLayer.h */, + 8974E4EF1A43071300D343A3 /* RPGMapStatusMenuLayer.cpp */, + 8974E4F01A43071300D343A3 /* RPGMapStatusMenuLayer.h */, + 8974E4F11A43071300D343A3 /* RPGResultsLogic.cpp */, + 8974E4F21A43071300D343A3 /* RPGResultsLogic.h */, + 8974E4F31A43071300D343A3 /* RPGStartSceneLayer.cpp */, + 8974E4F41A43071300D343A3 /* RPGStartSceneLayer.h */, 1AFAF8C616D3886000DB1158 /* AppDelegate.cpp */, 1AFAF8C716D3886000DB1158 /* AppDelegate.h */, ); @@ -1776,7 +1763,8 @@ 29B97314FDCFA39411CA2CEA /* CustomTemplate */ = { isa = PBXGroup; children = ( - 89419B721957009700BFCA27 /* libs */, + 8974E50E1A43071D00D343A3 /* libs */, + 1A9CE9A71765A889000E3062 /* libsqlite3.dylib */, 15C156C21683158700D239F2 /* cocos2dx.xcodeproj */, 15C156CB1683159D00D239F2 /* Box2D */, 15C1577E168315B300D239F2 /* chipmunk */, @@ -1794,7 +1782,6 @@ 29B97323FDCFA39411CA2CEA /* Frameworks */ = { isa = PBXGroup; children = ( - 1A9CE9A71765A889000E3062 /* libsqlite3.dylib */, 15C6498616633E65007D4F18 /* libcurl.a */, 15C64830165F39AB007D4F18 /* libxml2.dylib */, 15C6482E165F399D007D4F18 /* libz.dylib */, @@ -2284,194 +2271,157 @@ 78C7DDAA14EBA5050085D0C2 /* Resources */ = { isa = PBXGroup; children = ( - 89419CC71957016300BFCA27 /* fzcyjt.ttf */, - 89419C8D1957014400BFCA27 /* actor4_0.png */, - 89419C8E1957014400BFCA27 /* actor4_1.png */, - 89419C8F1957014400BFCA27 /* actor4_2.png */, - 89419C901957014400BFCA27 /* actor4_3.png */, - 89419C911957014400BFCA27 /* actor4_4.png */, - 89419C921957014400BFCA27 /* actor5_0.png */, - 89419C931957014400BFCA27 /* actor5_1.png */, - 89419C941957014400BFCA27 /* actor5_2.png */, - 89419C951957014400BFCA27 /* actor5_3.png */, - 89419C961957014400BFCA27 /* actor5_4.png */, - 89419C971957014400BFCA27 /* actor7_0.png */, - 89419C981957014400BFCA27 /* actor7_1.png */, - 89419C991957014400BFCA27 /* actor7_2.png */, - 89419C9A1957014400BFCA27 /* actor7_3.png */, - 89419C9B1957014400BFCA27 /* actor7_4.png */, - 89419C9C1957014400BFCA27 /* actor8_0.png */, - 89419C9D1957014400BFCA27 /* actor8_1.png */, - 89419C9E1957014400BFCA27 /* actor8_2.png */, - 89419C9F1957014400BFCA27 /* actor8_3.png */, - 89419CA01957014400BFCA27 /* actor8_4.png */, - 89419CA11957014400BFCA27 /* actor111.png */, - 89419CA21957014400BFCA27 /* actor113.png */, - 89419CA31957014400BFCA27 /* actor114.png */, - 89419CA41957014400BFCA27 /* actor115.png */, - 89419CA51957014400BFCA27 /* actor117.png */, - 89419CA61957014400BFCA27 /* actor120.png */, - 89419CA71957014400BFCA27 /* alert_style1.tmx */, - 89419CA81957014400BFCA27 /* alert_style2.tmx */, - 89419CA91957014400BFCA27 /* alert_style3.tmx */, - 89419C2D1957013800BFCA27 /* attack_damage.plist */, - 89419C2E1957013800BFCA27 /* attack_damage.png */, - 89419C2F1957013800BFCA27 /* attack1.ExportJson */, - 89419C301957013800BFCA27 /* attack2.ExportJson */, - 89419C311957013800BFCA27 /* attack3.ExportJson */, - 89419C321957013800BFCA27 /* attack4.ExportJson */, - 89419C331957013800BFCA27 /* attack10.plist */, - 89419C341957013800BFCA27 /* attack10.png */, - 89419C351957013800BFCA27 /* attack20.plist */, - 89419C361957013800BFCA27 /* attack20.png */, - 89419C371957013800BFCA27 /* attack30.plist */, - 89419C381957013800BFCA27 /* attack30.png */, - 89419C391957013800BFCA27 /* attack40.plist */, - 89419C3A1957013800BFCA27 /* attack40.png */, - 89419C3B1957013800BFCA27 /* audio_battle_attack1.wav */, - 89419C3C1957013800BFCA27 /* audio_battle_attack2.wav */, - 89419C3D1957013800BFCA27 /* audio_battle_end.mp3 */, - 89419C3E1957013800BFCA27 /* audio_battle_lose.mp3 */, - 89419C3F1957013800BFCA27 /* audio_battle_menu.wav */, - 89419C401957013800BFCA27 /* audio_battle_start.wav */, - 89419C411957013800BFCA27 /* audio_battle.mp3 */, - 89419C421957013800BFCA27 /* audio_effect_btn.wav */, - 89419C431957013800BFCA27 /* audio_inn.mp3 */, - 89419C441957013800BFCA27 /* audio_map_01.mp3 */, - 89419C451957013800BFCA27 /* audio_map_02.mp3 */, - 89419C461957013800BFCA27 /* audio_map_03.mp3 */, - 89419C471957013800BFCA27 /* audio_skill_cure.wav */, - 89419C481957013800BFCA27 /* audio_skill_fire.wav */, - 89419C491957013800BFCA27 /* audio_start_btn.wav */, - 89419C4A1957013800BFCA27 /* audio_start.mp3 */, - 89419C4B1957013800BFCA27 /* audio_use_items.wav */, - 89419C4C1957013800BFCA27 /* battle_battlemenu_style1.tmx */, - 89419C4D1957013800BFCA27 /* battle_battlemenu_style2.tmx */, - 89419C4E1957013800BFCA27 /* battle_battlemenu_style3.tmx */, - 89419C4F1957013800BFCA27 /* battle_bg.png */, - 89419C501957013800BFCA27 /* battle_menu_style1.tmx */, - 89419C511957013800BFCA27 /* battle_menu_style2.tmx */, - 89419C521957013800BFCA27 /* battle_menu_style3.tmx */, - 89419C531957013800BFCA27 /* battle_msg_style1.tmx */, - 89419C541957013800BFCA27 /* battle_msg_style2.tmx */, - 89419C551957013800BFCA27 /* battle_msg_style3.tmx */, - 89419C561957013800BFCA27 /* battle_select_style1.tmx */, - 89419C571957013800BFCA27 /* battle_select_style2.tmx */, - 89419C581957013800BFCA27 /* battle_select_style3.tmx */, - 89419C591957013800BFCA27 /* db.sys */, - 89419C5A1957013800BFCA27 /* dialog_style1.tmx */, - 89419C5B1957013800BFCA27 /* dialog_style2.tmx */, - 89419C5C1957013800BFCA27 /* dialog_style3.tmx */, - 89419BD31957012100BFCA27 /* joystick.plist */, - 89419BD41957012100BFCA27 /* joystick.png */, - 89419BD51957012100BFCA27 /* main.plist */, - 89419BD61957012100BFCA27 /* main.png */, - 89419BD71957012100BFCA27 /* map_01.tmx */, - 89419BD81957012100BFCA27 /* map_02.tmx */, - 89419BD91957012100BFCA27 /* map_03.tmx */, - 89419BDA1957012100BFCA27 /* map_menu1_style1.tmx */, - 89419BDB1957012100BFCA27 /* map_menu1_style2.tmx */, - 89419BDC1957012100BFCA27 /* map_menu1_style3.tmx */, - 89419BDD1957012100BFCA27 /* map_menu2_style1.tmx */, - 89419BDE1957012100BFCA27 /* map_menu2_style2.tmx */, - 89419BDF1957012100BFCA27 /* map_menu2_style3.tmx */, - 89419BE01957012100BFCA27 /* map_menu3_style1.tmx */, - 89419BE11957012100BFCA27 /* map_menu3_style2.tmx */, - 89419BE21957012100BFCA27 /* map_menu3_style3.tmx */, - 89419BE31957012100BFCA27 /* map_menu4_style1.tmx */, - 89419BE41957012100BFCA27 /* map_menu4_style2.tmx */, - 89419BE51957012100BFCA27 /* map_menu4_style3.tmx */, - 89419BE61957012100BFCA27 /* map_menu5_style1.tmx */, - 89419BE71957012100BFCA27 /* map_menu5_style2.tmx */, - 89419BE81957012100BFCA27 /* map_menu5_style3.tmx */, - 89419BE91957012100BFCA27 /* map.png */, - 89419BEA1957012100BFCA27 /* monsters.plist */, - 89419BEB1957012100BFCA27 /* monsters.png */, - 89419BEC1957012100BFCA27 /* scene_battle_cns.plist */, - 89419BED1957012100BFCA27 /* scene_loading_cns.plist */, - 89419BEE1957012100BFCA27 /* scene_map_cns.plist */, - 89419BEF1957012100BFCA27 /* scene_start_cns.plist */, - 89419BF01957012100BFCA27 /* select_player_style1.tmx */, - 89419BF11957012100BFCA27 /* select_player_style2.tmx */, - 89419BF21957012100BFCA27 /* select_player_style3.tmx */, - 89419BF31957012100BFCA27 /* shop_list_style1.tmx */, - 89419BF41957012100BFCA27 /* shop_list_style2.tmx */, - 89419BF51957012100BFCA27 /* shop_list_style3.tmx */, - 89419BF61957012100BFCA27 /* shop_menu_style1.tmx */, - 89419BF71957012100BFCA27 /* shop_menu_style2.tmx */, - 89419BF81957012100BFCA27 /* shop_menu_style3.tmx */, - 89419BF91957012100BFCA27 /* skill_cure.plist */, - 89419BFA1957012100BFCA27 /* skill_fire.plist */, - 89419BFB1957012100BFCA27 /* start_bg.png */, - 89419BFC1957012100BFCA27 /* use_item.plist */, - 89419BFD1957012100BFCA27 /* Window_a_00.png */, - 89419BFE1957012100BFCA27 /* Window_b_00.png */, - 89419BFF1957012100BFCA27 /* Window_c_00.png */, + 8974E4C01A43070300D343A3 /* fzcyjt.ttf */, + 8974E4261A4306A700D343A3 /* actor4_0.png */, + 8974E4271A4306A700D343A3 /* actor4_1.png */, + 8974E4281A4306A700D343A3 /* actor4_2.png */, + 8974E4291A4306A700D343A3 /* actor4_3.png */, + 8974E42A1A4306A700D343A3 /* actor4_4.png */, + 8974E42B1A4306A700D343A3 /* actor5_0.png */, + 8974E42C1A4306A700D343A3 /* actor5_1.png */, + 8974E42D1A4306A700D343A3 /* actor5_2.png */, + 8974E42E1A4306A700D343A3 /* actor5_3.png */, + 8974E42F1A4306A700D343A3 /* actor5_4.png */, + 8974E4301A4306A700D343A3 /* actor7_0.png */, + 8974E4311A4306A700D343A3 /* actor7_1.png */, + 8974E4321A4306A700D343A3 /* actor7_2.png */, + 8974E4331A4306A700D343A3 /* actor7_3.png */, + 8974E4341A4306A700D343A3 /* actor7_4.png */, + 8974E4351A4306A700D343A3 /* actor8_0.png */, + 8974E4361A4306A700D343A3 /* actor8_1.png */, + 8974E4371A4306A700D343A3 /* actor8_2.png */, + 8974E4381A4306A700D343A3 /* actor8_3.png */, + 8974E4391A4306A700D343A3 /* actor8_4.png */, + 8974E43A1A4306A700D343A3 /* actor111.png */, + 8974E43B1A4306A700D343A3 /* actor113.png */, + 8974E43C1A4306A700D343A3 /* actor114.png */, + 8974E43D1A4306A700D343A3 /* actor115.png */, + 8974E43E1A4306A700D343A3 /* actor117.png */, + 8974E43F1A4306A700D343A3 /* actor120.png */, + 8974E4401A4306A700D343A3 /* alert_style1.tmx */, + 8974E4411A4306A700D343A3 /* alert_style2.tmx */, + 8974E4421A4306A700D343A3 /* alert_style3.tmx */, + 8974E4431A4306A700D343A3 /* attack_damage.plist */, + 8974E4441A4306A700D343A3 /* attack_damage.png */, + 8974E4451A4306A700D343A3 /* attack1.ExportJson */, + 8974E4461A4306A700D343A3 /* attack2.ExportJson */, + 8974E4471A4306A700D343A3 /* attack3.ExportJson */, + 8974E4481A4306A700D343A3 /* attack4.ExportJson */, + 8974E4491A4306A700D343A3 /* attack10.plist */, + 8974E44A1A4306A700D343A3 /* attack10.png */, + 8974E44B1A4306A700D343A3 /* attack20.plist */, + 8974E44C1A4306A700D343A3 /* attack20.png */, + 8974E44D1A4306A700D343A3 /* attack30.plist */, + 8974E44E1A4306A700D343A3 /* attack30.png */, + 8974E44F1A4306A700D343A3 /* attack40.plist */, + 8974E4501A4306A700D343A3 /* attack40.png */, + 8974E4511A4306A700D343A3 /* audio_battle_attack1.wav */, + 8974E4521A4306A700D343A3 /* audio_battle_attack2.wav */, + 8974E4531A4306A700D343A3 /* audio_battle_end.mp3 */, + 8974E4541A4306A700D343A3 /* audio_battle_lose.mp3 */, + 8974E4551A4306A700D343A3 /* audio_battle_menu.wav */, + 8974E4561A4306A700D343A3 /* audio_battle_start.wav */, + 8974E4571A4306A700D343A3 /* audio_battle.mp3 */, + 8974E4581A4306A700D343A3 /* audio_effect_btn.wav */, + 8974E4591A4306A700D343A3 /* audio_inn.mp3 */, + 8974E45A1A4306A700D343A3 /* audio_map_01.mp3 */, + 8974E45B1A4306A700D343A3 /* audio_map_02.mp3 */, + 8974E45C1A4306A700D343A3 /* audio_map_03.mp3 */, + 8974E45D1A4306A700D343A3 /* audio_skill_cure.wav */, + 8974E45E1A4306A700D343A3 /* audio_skill_fire.wav */, + 8974E45F1A4306A700D343A3 /* audio_start_btn.wav */, + 8974E4601A4306A700D343A3 /* audio_start.mp3 */, + 8974E4611A4306A700D343A3 /* audio_use_items.wav */, + 8974E4621A4306A700D343A3 /* battle_battlemenu_style1.tmx */, + 8974E4631A4306A700D343A3 /* battle_battlemenu_style2.tmx */, + 8974E4641A4306A700D343A3 /* battle_battlemenu_style3.tmx */, + 8974E4651A4306A700D343A3 /* battle_bg.png */, + 8974E4661A4306A700D343A3 /* battle_menu_style1.tmx */, + 8974E4671A4306A700D343A3 /* battle_menu_style2.tmx */, + 8974E4681A4306A700D343A3 /* battle_menu_style3.tmx */, + 8974E4691A4306A700D343A3 /* battle_msg_style1.tmx */, + 8974E46A1A4306A700D343A3 /* battle_msg_style2.tmx */, + 8974E46B1A4306A700D343A3 /* battle_msg_style3.tmx */, + 8974E46C1A4306A700D343A3 /* battle_select_style1.tmx */, + 8974E46D1A4306A700D343A3 /* battle_select_style2.tmx */, + 8974E46E1A4306A700D343A3 /* battle_select_style3.tmx */, + 8974E46F1A4306A700D343A3 /* db.sys */, + 8974E4701A4306A700D343A3 /* dialog_style1.tmx */, + 8974E4711A4306A700D343A3 /* dialog_style2.tmx */, + 8974E4721A4306A700D343A3 /* dialog_style3.tmx */, + 8974E3CC1A43069800D343A3 /* joystick.plist */, + 8974E3CD1A43069800D343A3 /* joystick.png */, + 8974E3CE1A43069800D343A3 /* main.plist */, + 8974E3CF1A43069800D343A3 /* main.png */, + 8974E3D01A43069800D343A3 /* map_01.tmx */, + 8974E3D11A43069800D343A3 /* map_02.tmx */, + 8974E3D21A43069800D343A3 /* map_03.tmx */, + 8974E3D31A43069800D343A3 /* map_menu1_style1.tmx */, + 8974E3D41A43069800D343A3 /* map_menu1_style2.tmx */, + 8974E3D51A43069800D343A3 /* map_menu1_style3.tmx */, + 8974E3D61A43069800D343A3 /* map_menu2_style1.tmx */, + 8974E3D71A43069800D343A3 /* map_menu2_style2.tmx */, + 8974E3D81A43069800D343A3 /* map_menu2_style3.tmx */, + 8974E3D91A43069800D343A3 /* map_menu3_style1.tmx */, + 8974E3DA1A43069800D343A3 /* map_menu3_style2.tmx */, + 8974E3DB1A43069800D343A3 /* map_menu3_style3.tmx */, + 8974E3DC1A43069800D343A3 /* map_menu4_style1.tmx */, + 8974E3DD1A43069800D343A3 /* map_menu4_style2.tmx */, + 8974E3DE1A43069800D343A3 /* map_menu4_style3.tmx */, + 8974E3DF1A43069800D343A3 /* map_menu5_style1.tmx */, + 8974E3E01A43069800D343A3 /* map_menu5_style2.tmx */, + 8974E3E11A43069800D343A3 /* map_menu5_style3.tmx */, + 8974E3E21A43069800D343A3 /* map.png */, + 8974E3E31A43069800D343A3 /* monsters.plist */, + 8974E3E41A43069800D343A3 /* monsters.png */, + 8974E3E51A43069800D343A3 /* scene_battle_cns.plist */, + 8974E3E61A43069800D343A3 /* scene_loading_cns.plist */, + 8974E3E71A43069800D343A3 /* scene_map_cns.plist */, + 8974E3E81A43069800D343A3 /* scene_start_cns.plist */, + 8974E3E91A43069800D343A3 /* select_player_style1.tmx */, + 8974E3EA1A43069800D343A3 /* select_player_style2.tmx */, + 8974E3EB1A43069800D343A3 /* select_player_style3.tmx */, + 8974E3EC1A43069800D343A3 /* shop_list_style1.tmx */, + 8974E3ED1A43069800D343A3 /* shop_list_style2.tmx */, + 8974E3EE1A43069800D343A3 /* shop_list_style3.tmx */, + 8974E3EF1A43069800D343A3 /* shop_menu_style1.tmx */, + 8974E3F01A43069800D343A3 /* shop_menu_style2.tmx */, + 8974E3F11A43069800D343A3 /* shop_menu_style3.tmx */, + 8974E3F21A43069800D343A3 /* skill_cure.plist */, + 8974E3F31A43069800D343A3 /* skill_fire.plist */, + 8974E3F41A43069800D343A3 /* start_bg.png */, + 8974E3F51A43069800D343A3 /* use_item.plist */, + 8974E3F61A43069800D343A3 /* Window_a_00.png */, + 8974E3F71A43069800D343A3 /* Window_b_00.png */, + 8974E3F81A43069800D343A3 /* Window_c_00.png */, ); name = Resources; path = ../Resources; sourceTree = ""; }; - 89419B721957009700BFCA27 /* libs */ = { + 8974E50E1A43071D00D343A3 /* libs */ = { isa = PBXGroup; children = ( - 89419B731957009700BFCA27 /* CppSQLite3.cpp */, - 89419B741957009700BFCA27 /* CppSQLite3.h */, - 89419B751957009700BFCA27 /* JsonBox */, + 8974E5121A43073900D343A3 /* JsonBox */, + 8974E50F1A43072E00D343A3 /* CppSQLite3.cpp */, + 8974E5101A43072E00D343A3 /* CppSQLite3.h */, ); name = libs; - path = ../libs; sourceTree = ""; }; - 89419B751957009700BFCA27 /* JsonBox */ = { + 8974E5121A43073900D343A3 /* JsonBox */ = { isa = PBXGroup; children = ( - 89419B761957009700BFCA27 /* include */, - 89419B831957009700BFCA27 /* sn.txt */, - 89419B841957009700BFCA27 /* src */, + 8974E5131A43074700D343A3 /* Array.cpp */, + 8974E5141A43074700D343A3 /* Convert.cpp */, + 8974E5151A43074700D343A3 /* Escaper.cpp */, + 8974E5161A43074700D343A3 /* IndentCanceller.cpp */, + 8974E5171A43074700D343A3 /* Indenter.cpp */, + 8974E5181A43074700D343A3 /* Object.cpp */, + 8974E5191A43074700D343A3 /* SolidusEscaper.cpp */, + 8974E51A1A43074700D343A3 /* Value.cpp */, ); - path = JsonBox; - sourceTree = ""; - }; - 89419B761957009700BFCA27 /* include */ = { - isa = PBXGroup; - children = ( - 89419B771957009700BFCA27 /* JsonBox */, - 89419B821957009700BFCA27 /* JsonBox.h */, - ); - path = include; - sourceTree = ""; - }; - 89419B771957009700BFCA27 /* JsonBox */ = { - isa = PBXGroup; - children = ( - 89419B781957009700BFCA27 /* Array.h */, - 89419B791957009700BFCA27 /* Convert.h */, - 89419B7A1957009700BFCA27 /* Escaper.h */, - 89419B7B1957009700BFCA27 /* Grammar.h */, - 89419B7C1957009700BFCA27 /* IndentCanceller.h */, - 89419B7D1957009700BFCA27 /* Indenter.h */, - 89419B7E1957009700BFCA27 /* Object.h */, - 89419B7F1957009700BFCA27 /* OutputFilter.h */, - 89419B801957009700BFCA27 /* SolidusEscaper.h */, - 89419B811957009700BFCA27 /* Value.h */, - ); - path = JsonBox; - sourceTree = ""; - }; - 89419B841957009700BFCA27 /* src */ = { - isa = PBXGroup; - children = ( - 89419B851957009700BFCA27 /* Array.cpp */, - 89419B861957009700BFCA27 /* Convert.cpp */, - 89419B871957009700BFCA27 /* Escaper.cpp */, - 89419B881957009700BFCA27 /* IndentCanceller.cpp */, - 89419B891957009700BFCA27 /* Indenter.cpp */, - 89419B8A1957009700BFCA27 /* Object.cpp */, - 89419B8B1957009700BFCA27 /* SolidusEscaper.cpp */, - 89419B8C1957009700BFCA27 /* Value.cpp */, - ); - path = src; + name = JsonBox; sourceTree = ""; }; 8C583FA7169DB6BB00F63A10 /* CCEditBox */ = { @@ -2556,134 +2506,133 @@ isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 89419C0F1957012100BFCA27 /* map_menu3_style3.tmx in Resources */, - 89419CB71957014400BFCA27 /* actor7_3.png in Resources */, - 89419CB51957014400BFCA27 /* actor7_1.png in Resources */, - 89419C781957013800BFCA27 /* audio_skill_fire.wav in Resources */, - 89419C0A1957012100BFCA27 /* map_menu2_style1.tmx in Resources */, - 89419C7F1957013800BFCA27 /* battle_bg.png in Resources */, - 89419C801957013800BFCA27 /* battle_menu_style1.tmx in Resources */, - 89419C611957013800BFCA27 /* attack3.ExportJson in Resources */, - 89419CB11957014400BFCA27 /* actor5_2.png in Resources */, - 89419CAC1957014400BFCA27 /* actor4_2.png in Resources */, - 89419C211957012100BFCA27 /* shop_list_style2.tmx in Resources */, - 89419C851957013800BFCA27 /* battle_msg_style3.tmx in Resources */, - 89419C261957012100BFCA27 /* skill_cure.plist in Resources */, + 8974E4111A43069800D343A3 /* monsters.png in Resources */, + 8974E4781A4306A700D343A3 /* actor5_0.png in Resources */, + 8974E41D1A43069800D343A3 /* shop_menu_style2.tmx in Resources */, + 8974E4B91A4306A700D343A3 /* battle_select_style1.tmx in Resources */, + 8974E4C11A43070300D343A3 /* fzcyjt.ttf in Resources */, + 8974E41E1A43069800D343A3 /* shop_menu_style3.tmx in Resources */, + 8974E40F1A43069800D343A3 /* map.png in Resources */, + 8974E3FC1A43069800D343A3 /* main.png in Resources */, + 8974E40A1A43069800D343A3 /* map_menu4_style2.tmx in Resources */, + 8974E41F1A43069800D343A3 /* skill_cure.plist in Resources */, + 8974E4041A43069800D343A3 /* map_menu2_style2.tmx in Resources */, + 8974E49E1A4306A700D343A3 /* audio_battle_attack1.wav in Resources */, + 8974E4A61A4306A700D343A3 /* audio_inn.mp3 in Resources */, + 8974E3FD1A43069800D343A3 /* map_01.tmx in Resources */, + 8974E4971A4306A700D343A3 /* attack10.png in Resources */, 41BC70E515BF81A5006A0A6C /* InfoPlist.strings in Resources */, - 89419C051957012100BFCA27 /* map_02.tmx in Resources */, - 89419C5E1957013800BFCA27 /* attack_damage.png in Resources */, - 89419C621957013800BFCA27 /* attack4.ExportJson in Resources */, - 89419CBE1957014400BFCA27 /* actor111.png in Resources */, - 89419CBB1957014400BFCA27 /* actor8_2.png in Resources */, - 89419C881957013800BFCA27 /* battle_select_style3.tmx in Resources */, - 89419C651957013800BFCA27 /* attack20.plist in Resources */, - 89419C241957012100BFCA27 /* shop_menu_style2.tmx in Resources */, - 89419C161957012100BFCA27 /* map.png in Resources */, - 89419C1E1957012100BFCA27 /* select_player_style2.tmx in Resources */, - 89419CB31957014400BFCA27 /* actor5_4.png in Resources */, - 89419C741957013800BFCA27 /* audio_map_01.mp3 in Resources */, - 89419C751957013800BFCA27 /* audio_map_02.mp3 in Resources */, - 89419CC11957014400BFCA27 /* actor115.png in Resources */, - 89419C671957013800BFCA27 /* attack30.plist in Resources */, - 89419C2A1957012100BFCA27 /* Window_a_00.png in Resources */, - 89419C1B1957012100BFCA27 /* scene_map_cns.plist in Resources */, - 89419CC31957014400BFCA27 /* actor120.png in Resources */, - 89419CC81957016300BFCA27 /* fzcyjt.ttf in Resources */, - 89419CC61957014400BFCA27 /* alert_style3.tmx in Resources */, - 89419C041957012100BFCA27 /* map_01.tmx in Resources */, - 89419C0B1957012100BFCA27 /* map_menu2_style2.tmx in Resources */, - 89419CB41957014400BFCA27 /* actor7_0.png in Resources */, - 89419CC01957014400BFCA27 /* actor114.png in Resources */, - 89419C891957013800BFCA27 /* db.sys in Resources */, - 89419C6E1957013800BFCA27 /* audio_battle_lose.mp3 in Resources */, - 89419C7C1957013800BFCA27 /* battle_battlemenu_style1.tmx in Resources */, - 89419C111957012100BFCA27 /* map_menu4_style2.tmx in Resources */, - 89419CB91957014400BFCA27 /* actor8_0.png in Resources */, - 89419C071957012100BFCA27 /* map_menu1_style1.tmx in Resources */, - 89419C681957013800BFCA27 /* attack30.png in Resources */, - 89419C7E1957013800BFCA27 /* battle_battlemenu_style3.tmx in Resources */, - 89419C771957013800BFCA27 /* audio_skill_cure.wav in Resources */, - 89419C0E1957012100BFCA27 /* map_menu3_style2.tmx in Resources */, - 89419C791957013800BFCA27 /* audio_start_btn.wav in Resources */, - 89419CAF1957014400BFCA27 /* actor5_0.png in Resources */, - 89419C0C1957012100BFCA27 /* map_menu2_style3.tmx in Resources */, - 89419CAE1957014400BFCA27 /* actor4_4.png in Resources */, - 89419CB81957014400BFCA27 /* actor7_4.png in Resources */, - 89419C2B1957012100BFCA27 /* Window_b_00.png in Resources */, - 89419C841957013800BFCA27 /* battle_msg_style2.tmx in Resources */, - 89419CB01957014400BFCA27 /* actor5_1.png in Resources */, - 89419CC21957014400BFCA27 /* actor117.png in Resources */, - 89419C6C1957013800BFCA27 /* audio_battle_attack2.wav in Resources */, - 89419C021957012100BFCA27 /* main.plist in Resources */, - 89419C1F1957012100BFCA27 /* select_player_style3.tmx in Resources */, - 89419C8A1957013800BFCA27 /* dialog_style1.tmx in Resources */, - 89419C031957012100BFCA27 /* main.png in Resources */, - 89419C6A1957013800BFCA27 /* attack40.png in Resources */, - 89419C171957012100BFCA27 /* monsters.plist in Resources */, - 89419C061957012100BFCA27 /* map_03.tmx in Resources */, - 89419C271957012100BFCA27 /* skill_fire.plist in Resources */, + 8974E48A1A4306A700D343A3 /* actor115.png in Resources */, + 8974E4821A4306A700D343A3 /* actor8_0.png in Resources */, + 8974E4241A43069800D343A3 /* Window_b_00.png in Resources */, + 8974E4AA1A4306A700D343A3 /* audio_skill_cure.wav in Resources */, + 8974E4051A43069800D343A3 /* map_menu2_style3.tmx in Resources */, + 8974E48B1A4306A700D343A3 /* actor117.png in Resources */, + 8974E4B21A4306A700D343A3 /* battle_bg.png in Resources */, + 8974E4791A4306A700D343A3 /* actor5_1.png in Resources */, + 8974E4001A43069800D343A3 /* map_menu1_style1.tmx in Resources */, + 8974E3FB1A43069800D343A3 /* main.plist in Resources */, + 8974E47F1A4306A700D343A3 /* actor7_2.png in Resources */, + 8974E41C1A43069800D343A3 /* shop_menu_style1.tmx in Resources */, + 8974E4921A4306A700D343A3 /* attack1.ExportJson in Resources */, + 8974E4201A43069800D343A3 /* skill_fire.plist in Resources */, + 8974E4831A4306A700D343A3 /* actor8_1.png in Resources */, 41BC70E615BF81A5006A0A6C /* MainMenu.xib in Resources */, - 89419C631957013800BFCA27 /* attack10.plist in Resources */, - 89419C2C1957012100BFCA27 /* Window_c_00.png in Resources */, - 89419CBA1957014400BFCA27 /* actor8_1.png in Resources */, + 8974E4741A4306A700D343A3 /* actor4_1.png in Resources */, + 8974E40D1A43069800D343A3 /* map_menu5_style2.tmx in Resources */, + 8974E48C1A4306A700D343A3 /* actor120.png in Resources */, + 8974E3F91A43069800D343A3 /* joystick.plist in Resources */, + 8974E4A41A4306A700D343A3 /* audio_battle.mp3 in Resources */, + 8974E4061A43069800D343A3 /* map_menu3_style1.tmx in Resources */, + 8974E4861A4306A700D343A3 /* actor8_4.png in Resources */, + 8974E41A1A43069800D343A3 /* shop_list_style2.tmx in Resources */, + 8974E4AE1A4306A700D343A3 /* audio_use_items.wav in Resources */, + 8974E4731A4306A700D343A3 /* actor4_0.png in Resources */, + 8974E47B1A4306A700D343A3 /* actor5_3.png in Resources */, + 8974E47D1A4306A700D343A3 /* actor7_0.png in Resources */, + 8974E4B81A4306A700D343A3 /* battle_msg_style3.tmx in Resources */, + 8974E48F1A4306A700D343A3 /* alert_style3.tmx in Resources */, + 8974E4951A4306A700D343A3 /* attack4.ExportJson in Resources */, + 8974E4871A4306A700D343A3 /* actor111.png in Resources */, + 8974E49F1A4306A700D343A3 /* audio_battle_attack2.wav in Resources */, + 8974E4181A43069800D343A3 /* select_player_style3.tmx in Resources */, + 8974E4801A4306A700D343A3 /* actor7_3.png in Resources */, + 8974E4B71A4306A700D343A3 /* battle_msg_style2.tmx in Resources */, + 8974E4B41A4306A700D343A3 /* battle_menu_style2.tmx in Resources */, + 8974E40C1A43069800D343A3 /* map_menu5_style1.tmx in Resources */, + 8974E4BC1A4306A700D343A3 /* db.sys in Resources */, + 8974E49B1A4306A700D343A3 /* attack30.png in Resources */, + 8974E4B31A4306A700D343A3 /* battle_menu_style1.tmx in Resources */, + 8974E4A71A4306A700D343A3 /* audio_map_01.mp3 in Resources */, + 8974E4941A4306A700D343A3 /* attack3.ExportJson in Resources */, + 8974E48E1A4306A700D343A3 /* alert_style2.tmx in Resources */, + 8974E4191A43069800D343A3 /* shop_list_style1.tmx in Resources */, + 8974E4851A4306A700D343A3 /* actor8_3.png in Resources */, + 8974E4911A4306A700D343A3 /* attack_damage.png in Resources */, + 8974E4A11A4306A700D343A3 /* audio_battle_lose.mp3 in Resources */, + 8974E4021A43069800D343A3 /* map_menu1_style3.tmx in Resources */, + 8974E4A91A4306A700D343A3 /* audio_map_03.mp3 in Resources */, + 8974E49A1A4306A700D343A3 /* attack30.plist in Resources */, + 8974E4901A4306A700D343A3 /* attack_damage.plist in Resources */, + 8974E4891A4306A700D343A3 /* actor114.png in Resources */, + 8974E40B1A43069800D343A3 /* map_menu4_style3.tmx in Resources */, + 8974E4811A4306A700D343A3 /* actor7_4.png in Resources */, + 8974E4221A43069800D343A3 /* use_item.plist in Resources */, + 8974E4BE1A4306A700D343A3 /* dialog_style2.tmx in Resources */, + 8974E4751A4306A700D343A3 /* actor4_2.png in Resources */, + 8974E4AD1A4306A700D343A3 /* audio_start.mp3 in Resources */, + 8974E41B1A43069800D343A3 /* shop_list_style3.tmx in Resources */, + 8974E4A21A4306A700D343A3 /* audio_battle_menu.wav in Resources */, + 8974E4AF1A4306A700D343A3 /* battle_battlemenu_style1.tmx in Resources */, + 8974E4091A43069800D343A3 /* map_menu4_style1.tmx in Resources */, + 8974E4161A43069800D343A3 /* select_player_style1.tmx in Resources */, + 8974E47A1A4306A700D343A3 /* actor5_2.png in Resources */, + 8974E4761A4306A700D343A3 /* actor4_3.png in Resources */, + 8974E4BB1A4306A700D343A3 /* battle_select_style3.tmx in Resources */, + 8974E4081A43069800D343A3 /* map_menu3_style3.tmx in Resources */, + 8974E4AB1A4306A700D343A3 /* audio_skill_fire.wav in Resources */, + 8974E3FE1A43069800D343A3 /* map_02.tmx in Resources */, + 8974E4961A4306A700D343A3 /* attack10.plist in Resources */, + 8974E4BA1A4306A700D343A3 /* battle_select_style2.tmx in Resources */, + 8974E4031A43069800D343A3 /* map_menu2_style1.tmx in Resources */, + 8974E4131A43069800D343A3 /* scene_loading_cns.plist in Resources */, + 8974E4011A43069800D343A3 /* map_menu1_style2.tmx in Resources */, + 8974E4991A4306A700D343A3 /* attack20.png in Resources */, + 8974E4211A43069800D343A3 /* start_bg.png in Resources */, + 8974E4B11A4306A700D343A3 /* battle_battlemenu_style3.tmx in Resources */, + 8974E4231A43069800D343A3 /* Window_a_00.png in Resources */, + 8974E47E1A4306A700D343A3 /* actor7_1.png in Resources */, + 8974E4B61A4306A700D343A3 /* battle_msg_style1.tmx in Resources */, + 8974E4151A43069800D343A3 /* scene_start_cns.plist in Resources */, + 8974E4881A4306A700D343A3 /* actor113.png in Resources */, + 8974E4841A4306A700D343A3 /* actor8_2.png in Resources */, + 8974E4251A43069800D343A3 /* Window_c_00.png in Resources */, + 8974E49D1A4306A700D343A3 /* attack40.png in Resources */, + 8974E4A31A4306A700D343A3 /* audio_battle_start.wav in Resources */, + 8974E4071A43069800D343A3 /* map_menu3_style2.tmx in Resources */, + 8974E3FF1A43069800D343A3 /* map_03.tmx in Resources */, + 8974E4AC1A4306A700D343A3 /* audio_start_btn.wav in Resources */, + 8974E4101A43069800D343A3 /* monsters.plist in Resources */, + 8974E4A51A4306A700D343A3 /* audio_effect_btn.wav in Resources */, + 8974E4A01A4306A700D343A3 /* audio_battle_end.mp3 in Resources */, + 8974E3FA1A43069800D343A3 /* joystick.png in Resources */, + 8974E4771A4306A700D343A3 /* actor4_4.png in Resources */, + 8974E4BD1A4306A700D343A3 /* dialog_style1.tmx in Resources */, + 8974E47C1A4306A700D343A3 /* actor5_4.png in Resources */, + 8974E4931A4306A700D343A3 /* attack2.ExportJson in Resources */, + 8974E4171A43069800D343A3 /* select_player_style2.tmx in Resources */, + 8974E4B01A4306A700D343A3 /* battle_battlemenu_style2.tmx in Resources */, + 8974E49C1A4306A700D343A3 /* attack40.plist in Resources */, + 8974E4A81A4306A700D343A3 /* audio_map_02.mp3 in Resources */, + 8974E4141A43069800D343A3 /* scene_map_cns.plist in Resources */, + 8974E4981A4306A700D343A3 /* attack20.plist in Resources */, + 8974E4BF1A4306A700D343A3 /* dialog_style3.tmx in Resources */, + 8974E4121A43069800D343A3 /* scene_battle_cns.plist in Resources */, + 8974E48D1A4306A700D343A3 /* alert_style1.tmx in Resources */, + 8974E4B51A4306A700D343A3 /* battle_menu_style3.tmx in Resources */, + 8974E40E1A43069800D343A3 /* map_menu5_style3.tmx in Resources */, 41BC70E715BF81A5006A0A6C /* Icon.icns in Resources */, - 89419C831957013800BFCA27 /* battle_msg_style1.tmx in Resources */, - 89419C691957013800BFCA27 /* attack40.plist in Resources */, - 89419C101957012100BFCA27 /* map_menu4_style1.tmx in Resources */, - 89419C861957013800BFCA27 /* battle_select_style1.tmx in Resources */, - 89419CC51957014400BFCA27 /* alert_style2.tmx in Resources */, - 89419C1D1957012100BFCA27 /* select_player_style1.tmx in Resources */, - 89419CAB1957014400BFCA27 /* actor4_1.png in Resources */, 15C157DA168315B300D239F2 /* CMakeLists.txt in Resources */, - 89419C761957013800BFCA27 /* audio_map_03.mp3 in Resources */, - 89419C081957012100BFCA27 /* map_menu1_style2.tmx in Resources */, - 89419C6F1957013800BFCA27 /* audio_battle_menu.wav in Resources */, - 89419C141957012100BFCA27 /* map_menu5_style2.tmx in Resources */, - 89419C231957012100BFCA27 /* shop_menu_style1.tmx in Resources */, - 89419C811957013800BFCA27 /* battle_menu_style2.tmx in Resources */, - 89419CBD1957014400BFCA27 /* actor8_4.png in Resources */, - 89419C0D1957012100BFCA27 /* map_menu3_style1.tmx in Resources */, - 89419C281957012100BFCA27 /* start_bg.png in Resources */, - 89419C601957013800BFCA27 /* attack2.ExportJson in Resources */, - 89419CAD1957014400BFCA27 /* actor4_3.png in Resources */, - 89419C1C1957012100BFCA27 /* scene_start_cns.plist in Resources */, - 89419C181957012100BFCA27 /* monsters.png in Resources */, - 89419C001957012100BFCA27 /* joystick.plist in Resources */, - 89419C731957013800BFCA27 /* audio_inn.mp3 in Resources */, - 89419C121957012100BFCA27 /* map_menu4_style3.tmx in Resources */, - 89419C821957013800BFCA27 /* battle_menu_style3.tmx in Resources */, - 89419C701957013800BFCA27 /* audio_battle_start.wav in Resources */, - 89419C7B1957013800BFCA27 /* audio_use_items.wav in Resources */, - 89419C091957012100BFCA27 /* map_menu1_style3.tmx in Resources */, - 89419B8E1957009700BFCA27 /* sn.txt in Resources */, - 89419C191957012100BFCA27 /* scene_battle_cns.plist in Resources */, - 89419CC41957014400BFCA27 /* alert_style1.tmx in Resources */, - 89419CBC1957014400BFCA27 /* actor8_3.png in Resources */, - 89419C201957012100BFCA27 /* shop_list_style1.tmx in Resources */, - 89419C641957013800BFCA27 /* attack10.png in Resources */, - 89419CB21957014400BFCA27 /* actor5_3.png in Resources */, - 89419C6D1957013800BFCA27 /* audio_battle_end.mp3 in Resources */, - 89419C8B1957013800BFCA27 /* dialog_style2.tmx in Resources */, - 89419C711957013800BFCA27 /* audio_battle.mp3 in Resources */, - 89419CBF1957014400BFCA27 /* actor113.png in Resources */, - 89419C871957013800BFCA27 /* battle_select_style2.tmx in Resources */, - 89419C221957012100BFCA27 /* shop_list_style3.tmx in Resources */, - 89419C291957012100BFCA27 /* use_item.plist in Resources */, - 89419C6B1957013800BFCA27 /* audio_battle_attack1.wav in Resources */, - 89419C5D1957013800BFCA27 /* attack_damage.plist in Resources */, - 89419C011957012100BFCA27 /* joystick.png in Resources */, - 89419C721957013800BFCA27 /* audio_effect_btn.wav in Resources */, - 89419C5F1957013800BFCA27 /* attack1.ExportJson in Resources */, - 89419C7D1957013800BFCA27 /* battle_battlemenu_style2.tmx in Resources */, - 89419C8C1957013800BFCA27 /* dialog_style3.tmx in Resources */, - 89419CAA1957014400BFCA27 /* actor4_0.png in Resources */, - 89419C251957012100BFCA27 /* shop_menu_style3.tmx in Resources */, - 89419C131957012100BFCA27 /* map_menu5_style1.tmx in Resources */, - 89419C7A1957013800BFCA27 /* audio_start.mp3 in Resources */, - 89419C661957013800BFCA27 /* attack20.png in Resources */, - 89419C151957012100BFCA27 /* map_menu5_style3.tmx in Resources */, - 89419C1A1957012100BFCA27 /* scene_loading_cns.plist in Resources */, - 89419CB61957014400BFCA27 /* actor7_2.png in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2696,6 +2645,7 @@ files = ( 41BC70E415BF81A5006A0A6C /* AppController.mm in Sources */, 41BC70E815BF81A5006A0A6C /* main.m in Sources */, + 8974E5051A43071300D343A3 /* RPGMapItemsMenuLayer.cpp in Sources */, 15C157431683159E00D239F2 /* b2BroadPhase.cpp in Sources */, 15C157441683159E00D239F2 /* b2CollideCircle.cpp in Sources */, 15C157451683159E00D239F2 /* b2CollideEdge.cpp in Sources */, @@ -2703,36 +2653,44 @@ 15C157471683159E00D239F2 /* b2Collision.cpp in Sources */, 15C157481683159E00D239F2 /* b2Distance.cpp in Sources */, 15C157491683159E00D239F2 /* b2DynamicTree.cpp in Sources */, + 8974E5081A43071300D343A3 /* RPGMapRoleSprite.cpp in Sources */, 15C1574A1683159E00D239F2 /* b2TimeOfImpact.cpp in Sources */, 15C1574B1683159E00D239F2 /* b2ChainShape.cpp in Sources */, 15C1574C1683159E00D239F2 /* b2CircleShape.cpp in Sources */, 2964940C19518DD100BE20D8 /* CCActionTimeline.cpp in Sources */, 37C62CF718E157C300D16FC4 /* UIImageView.cpp in Sources */, + 8974E51E1A43074700D343A3 /* IndentCanceller.cpp in Sources */, 15C1574D1683159E00D239F2 /* b2EdgeShape.cpp in Sources */, + 8974E4F71A43071300D343A3 /* OzgFileUtility.cpp in Sources */, 15C1574E1683159E00D239F2 /* b2PolygonShape.cpp in Sources */, 37C62D0918E157C300D16FC4 /* ListViewReader.cpp in Sources */, 37C62CCD18E157C300D16FC4 /* CCActionEaseEx.cpp in Sources */, + 8974E5041A43071300D343A3 /* RPGMapEquipMenuLayer.cpp in Sources */, 37C62CF218E157C300D16FC4 /* UIListView.cpp in Sources */, 15C1574F1683159E00D239F2 /* b2BlockAllocator.cpp in Sources */, 15C157501683159E00D239F2 /* b2Draw.cpp in Sources */, + 8974E51D1A43074700D343A3 /* Escaper.cpp in Sources */, 15C157511683159E00D239F2 /* b2Math.cpp in Sources */, 37C62CF918E157C300D16FC4 /* UILabelAtlas.cpp in Sources */, 37C62D0B18E157C300D16FC4 /* PageViewReader.cpp in Sources */, 15C157521683159E00D239F2 /* b2Settings.cpp in Sources */, 15C157531683159E00D239F2 /* b2StackAllocator.cpp in Sources */, 37C62CF518E157C300D16FC4 /* UIButton.cpp in Sources */, - 89419CFD195701D800BFCA27 /* OzgCCUtility.cpp in Sources */, + 8974E50B1A43071300D343A3 /* RPGMapStatusMenuLayer.cpp in Sources */, + 8974E51F1A43074700D343A3 /* Indenter.cpp in Sources */, 15C157541683159E00D239F2 /* b2Timer.cpp in Sources */, - 89419D0D195701D800BFCA27 /* RPGMapMenuLayer.cpp in Sources */, 15C157551683159E00D239F2 /* b2Body.cpp in Sources */, 15C157561683159E00D239F2 /* b2ContactManager.cpp in Sources */, + 8974E5071A43071300D343A3 /* RPGMapNPCRoleSprite.cpp in Sources */, 15C157571683159E00D239F2 /* b2Fixture.cpp in Sources */, + 8974E4FD1A43071300D343A3 /* RPGBattleSceneLayer.cpp in Sources */, 15C157581683159E00D239F2 /* b2Island.cpp in Sources */, 15C157591683159E00D239F2 /* b2World.cpp in Sources */, + 8974E4FC1A43071300D343A3 /* RPGBattlePlayerSprite.cpp in Sources */, 15C1575A1683159E00D239F2 /* b2WorldCallbacks.cpp in Sources */, 15C1575B1683159E00D239F2 /* b2ChainAndCircleContact.cpp in Sources */, - 89419D04195701D800BFCA27 /* RPGBattleSceneLayer.cpp in Sources */, 15C1575C1683159E00D239F2 /* b2ChainAndPolygonContact.cpp in Sources */, + 8974E4F51A43071300D343A3 /* OzgCCScrollBgNode.cpp in Sources */, 15C1575D1683159E00D239F2 /* b2CircleContact.cpp in Sources */, 37C62CDD18E157C300D16FC4 /* CCSkin.cpp in Sources */, 15C1575E1683159E00D239F2 /* b2Contact.cpp in Sources */, @@ -2740,8 +2698,8 @@ 15C157601683159E00D239F2 /* b2EdgeAndCircleContact.cpp in Sources */, 37C62CD118E157C300D16FC4 /* CCActionNode.cpp in Sources */, 15C157611683159E00D239F2 /* b2EdgeAndPolygonContact.cpp in Sources */, + 8974E5211A43074700D343A3 /* SolidusEscaper.cpp in Sources */, 15C157621683159E00D239F2 /* b2PolygonAndCircleContact.cpp in Sources */, - 89419B931957009700BFCA27 /* Indenter.cpp in Sources */, 15C157631683159E00D239F2 /* b2PolygonContact.cpp in Sources */, 37C62CE718E157C300D16FC4 /* CCComAudio.cpp in Sources */, 15C157641683159E00D239F2 /* b2DistanceJoint.cpp in Sources */, @@ -2757,6 +2715,8 @@ 15C157671683159E00D239F2 /* b2Joint.cpp in Sources */, 15C157681683159E00D239F2 /* b2MouseJoint.cpp in Sources */, 15C157691683159E00D239F2 /* b2PrismaticJoint.cpp in Sources */, + 8974E5201A43074700D343A3 /* Object.cpp in Sources */, + 8974E5221A43074700D343A3 /* Value.cpp in Sources */, 37C62CDE18E157C300D16FC4 /* CCColliderDetector.cpp in Sources */, 37C62CE118E157C300D16FC4 /* CCDataReaderHelper.cpp in Sources */, 37C62CF318E157C300D16FC4 /* UIPageView.cpp in Sources */, @@ -2765,21 +2725,22 @@ 15C1576B1683159E00D239F2 /* b2RevoluteJoint.cpp in Sources */, 37C62D0F18E157C300D16FC4 /* WidgetReader.cpp in Sources */, 15C1576C1683159E00D239F2 /* b2RopeJoint.cpp in Sources */, + 8974E5091A43071300D343A3 /* RPGMapSceneLayer.cpp in Sources */, + 8974E4F81A43071300D343A3 /* OzgJoystickLayer.cpp in Sources */, 15C1576D1683159E00D239F2 /* b2WeldJoint.cpp in Sources */, 15C1576E1683159E00D239F2 /* b2WheelJoint.cpp in Sources */, 15C1577D1683159E00D239F2 /* b2Rope.cpp in Sources */, - 89419D0E195701D800BFCA27 /* RPGMapNPCRoleSprite.cpp in Sources */, 37C62D0118E157C300D16FC4 /* SceneReader.cpp in Sources */, - 89419B951957009700BFCA27 /* SolidusEscaper.cpp in Sources */, 15C157D9168315B300D239F2 /* chipmunk.c in Sources */, 15C157DB168315B300D239F2 /* cpConstraint.c in Sources */, + 8974E5001A43071300D343A3 /* RPGDialogLayer.cpp in Sources */, 37C62CFF18E157C300D16FC4 /* DictionaryHelper.cpp in Sources */, 37C62D1018E157C300D16FC4 /* ObjectFactory.cpp in Sources */, 37C62CDF18E157C300D16FC4 /* CCArmatureDataManager.cpp in Sources */, 15C157DC168315B300D239F2 /* cpDampedRotarySpring.c in Sources */, + 8974E50A1A43071300D343A3 /* RPGMapSkillMenuLayer.cpp in Sources */, 15C157DD168315B300D239F2 /* cpDampedSpring.c in Sources */, 15C157DE168315B300D239F2 /* cpGearJoint.c in Sources */, - 89419D00195701D800BFCA27 /* RPGBaseSceneLayer.cpp in Sources */, 15C157DF168315B300D239F2 /* cpGrooveJoint.c in Sources */, 37C62CEB18E157C300D16FC4 /* UIWidget.cpp in Sources */, 15C157E0168315B300D239F2 /* cpPinJoint.c in Sources */, @@ -2789,7 +2750,9 @@ 37C62CDA18E157C300D16FC4 /* CCDecorativeDisplay.cpp in Sources */, 15C157E4168315B300D239F2 /* cpSimpleMotor.c in Sources */, 15C157E5168315B300D239F2 /* cpSlideJoint.c in Sources */, + 8974E5031A43071300D343A3 /* RPGMapDialogLayer.cpp in Sources */, 15C157E6168315B300D239F2 /* cpArbiter.c in Sources */, + 8974E4FA1A43071300D343A3 /* RPGBattleMenu.cpp in Sources */, 15C157E7168315B300D239F2 /* cpArray.c in Sources */, 15C157E8168315B300D239F2 /* cpBB.c in Sources */, 15C157E9168315B300D239F2 /* cpBBTree.c in Sources */, @@ -2799,40 +2762,40 @@ 15C157EB168315B300D239F2 /* cpCollision.c in Sources */, 15C157EC168315B300D239F2 /* cpHashSet.c in Sources */, 37C62CEF18E157C300D16FC4 /* CocosGUI.cpp in Sources */, + 8974E50D1A43071300D343A3 /* RPGStartSceneLayer.cpp in Sources */, + 8974E4F61A43071300D343A3 /* OzgCCUtility.cpp in Sources */, 15C157ED168315B300D239F2 /* cpPolyShape.c in Sources */, 37C62CD418E157C300D16FC4 /* CCProcessBase.cpp in Sources */, 15C157EE168315B300D239F2 /* cpShape.c in Sources */, 37C62D0818E157C300D16FC4 /* LayoutReader.cpp in Sources */, 15C157EF168315B300D239F2 /* cpSpace.c in Sources */, 15C157F0168315B300D239F2 /* cpSpaceComponent.c in Sources */, + 8974E51B1A43074700D343A3 /* Array.cpp in Sources */, 37C62CF118E157C300D16FC4 /* UITouchGroup.cpp in Sources */, - 89419D12195701D800BFCA27 /* RPGMapStatusMenuLayer.cpp in Sources */, + 8974E4F91A43071300D343A3 /* RPGBaseSceneLayer.cpp in Sources */, 15C157F1168315B300D239F2 /* cpSpaceHash.c in Sources */, 15C157F2168315B300D239F2 /* cpSpaceQuery.c in Sources */, 37C62CE518E157C300D16FC4 /* CCUtilMath.cpp in Sources */, - 89419D05195701D800BFCA27 /* RPGComputingResults.cpp in Sources */, 15C157F3168315B300D239F2 /* cpSpaceStep.c in Sources */, 15C157F4168315B300D239F2 /* cpSpatialIndex.c in Sources */, 15C157F5168315B300D239F2 /* cpSweep1D.c in Sources */, + 8974E5021A43071300D343A3 /* RPGMapChoicePlayerMenuLayer.cpp in Sources */, 15C157F6168315B300D239F2 /* cpVect.c in Sources */, 37C62CE618E157C300D16FC4 /* CCComAttribute.cpp in Sources */, - 89419D08195701D800BFCA27 /* RPGLoadingSceneLayer.cpp in Sources */, 15C1591A168315E500D239F2 /* CCBAnimationManager.cpp in Sources */, - 89419D02195701D800BFCA27 /* RPGBattleMonsterSprite.cpp in Sources */, 37C62CFE18E157C300D16FC4 /* UITextField.cpp in Sources */, 37C62D1118E157C300D16FC4 /* TriggerBase.cpp in Sources */, 37C62D0218E157C300D16FC4 /* ButtonReader.cpp in Sources */, 37C62CEA18E157C300D16FC4 /* CCInputDelegate.cpp in Sources */, + 8974E5011A43071300D343A3 /* RPGLoadingSceneLayer.cpp in Sources */, 37C62CD018E157C300D16FC4 /* CCActionManager.cpp in Sources */, 15C1591B168315E500D239F2 /* CCBFileLoader.cpp in Sources */, 15C1591C168315E500D239F2 /* CCBKeyframe.cpp in Sources */, 15C1591D168315E500D239F2 /* CCBReader.cpp in Sources */, 15C1591E168315E500D239F2 /* CCBSequence.cpp in Sources */, - 89419B921957009700BFCA27 /* IndentCanceller.cpp in Sources */, 15C1591F168315E500D239F2 /* CCBSequenceProperty.cpp in Sources */, 15C15920168315E500D239F2 /* CCBValue.cpp in Sources */, 37C62CD918E157C300D16FC4 /* CCBatchNode.cpp in Sources */, - 89419B961957009700BFCA27 /* Value.cpp in Sources */, 37C62D0D18E157C300D16FC4 /* SliderReader.cpp in Sources */, 15C15921168315E500D239F2 /* CCControlButtonLoader.cpp in Sources */, 15C15922168315E500D239F2 /* CCControlLoader.cpp in Sources */, @@ -2843,8 +2806,8 @@ 15C15927168315E500D239F2 /* CCLayerGradientLoader.cpp in Sources */, 15C15928168315E500D239F2 /* CCLayerLoader.cpp in Sources */, 15C15929168315E500D239F2 /* CCMenuItemImageLoader.cpp in Sources */, + 8974E51C1A43074700D343A3 /* Convert.cpp in Sources */, 37C62CFB18E157C300D16FC4 /* UILoadingBar.cpp in Sources */, - 89419CFE195701D800BFCA27 /* OzgFileUtility.cpp in Sources */, 15C1592A168315E500D239F2 /* CCMenuItemLoader.cpp in Sources */, 37C62CD818E157C300D16FC4 /* CCDatas.cpp in Sources */, 15C1592B168315E500D239F2 /* CCNode+CCBRelativePositioning.cpp in Sources */, @@ -2853,18 +2816,13 @@ 15C1592D168315E500D239F2 /* CCNodeLoaderLibrary.cpp in Sources */, 37C62CD718E157C300D16FC4 /* CCBone.cpp in Sources */, 37C62D1318E157C300D16FC4 /* TriggerObj.cpp in Sources */, - 89419B8D1957009700BFCA27 /* CppSQLite3.cpp in Sources */, - 89419CFF195701D800BFCA27 /* OzgJoystickLayer.cpp in Sources */, - 89419B8F1957009700BFCA27 /* Array.cpp in Sources */, 15C1592E168315E500D239F2 /* CCParticleSystemQuadLoader.cpp in Sources */, 15C1592F168315E500D239F2 /* CCScale9SpriteLoader.cpp in Sources */, - 89419D0C195701D800BFCA27 /* RPGMapItemsMenuLayer.cpp in Sources */, 37C62D0018E157C300D16FC4 /* GUIReader.cpp in Sources */, - 89419CFC195701D800BFCA27 /* OzgCCScrollBgNode.cpp in Sources */, 37C62D0C18E157C300D16FC4 /* ScrollViewReader.cpp in Sources */, 15C15930168315E500D239F2 /* CCScrollViewLoader.cpp in Sources */, - 89419D09195701D800BFCA27 /* RPGMapChoicePlayerMenuLayer.cpp in Sources */, 15C15931168315E500D239F2 /* CCSpriteLoader.cpp in Sources */, + 8974E4FF1A43071300D343A3 /* RPGData.cpp in Sources */, 15C15932168315E500D239F2 /* CCControl.cpp in Sources */, 15C15933168315E500D239F2 /* CCControlButton.cpp in Sources */, 15C15934168315E500D239F2 /* CCControlColourPicker.cpp in Sources */, @@ -2874,15 +2832,12 @@ 37C62CF418E157C300D16FC4 /* UIScrollView.cpp in Sources */, 15C15937168315E500D239F2 /* CCControlSaturationBrightnessPicker.cpp in Sources */, 37C62CD218E157C300D16FC4 /* CCActionObject.cpp in Sources */, - 89419B911957009700BFCA27 /* Escaper.cpp in Sources */, 15C15938168315E500D239F2 /* CCControlSlider.cpp in Sources */, 37C62CD318E157C300D16FC4 /* CCArmatureAnimation.cpp in Sources */, - 89419D07195701D800BFCA27 /* RPGDialogLayer.cpp in Sources */, 15C15939168315E500D239F2 /* CCControlStepper.cpp in Sources */, 15C1593A168315E500D239F2 /* CCControlSwitch.cpp in Sources */, 37C62D1218E157C300D16FC4 /* TriggerMng.cpp in Sources */, 37C62CCE18E157C300D16FC4 /* CCActionFrame.cpp in Sources */, - 89419D14195701D800BFCA27 /* RPGStartSceneLayer.cpp in Sources */, 15C1593B168315E500D239F2 /* CCControlUtils.cpp in Sources */, 37C62CE318E157C300D16FC4 /* CCTransformHelp.cpp in Sources */, 37C62D0E18E157C300D16FC4 /* TextFieldReader.cpp in Sources */, @@ -2897,29 +2852,26 @@ 15C15946168315E500D239F2 /* HttpClient.cpp in Sources */, 43B91F091949BB0500F7F815 /* CocoLoader.cpp in Sources */, 15C15947168315E500D239F2 /* CCPhysicsDebugNode.cpp in Sources */, - 89419D11195701D800BFCA27 /* RPGMapSkillMenuLayer.cpp in Sources */, - 89419D06195701D800BFCA27 /* RPGData.cpp in Sources */, 37C62CD518E157C300D16FC4 /* CCTween.cpp in Sources */, 15C15948168315E500D239F2 /* CCPhysicsSprite.cpp in Sources */, 2964940E19518DD100BE20D8 /* CCFrame.cpp in Sources */, 15D8B23E168318C3006C7997 /* CDAudioManager.m in Sources */, - 89419D0A195701D800BFCA27 /* RPGMapDialogLayer.cpp in Sources */, 15D8B23F168318C3006C7997 /* CDOpenALSupport.m in Sources */, - 89419B941957009700BFCA27 /* Object.cpp in Sources */, 15D8B240168318C3006C7997 /* CDXMacOSXSupport.mm in Sources */, 15D8B241168318C3006C7997 /* CocosDenshion.m in Sources */, 15D8B242168318C3006C7997 /* SimpleAudioEngine.mm in Sources */, 37C62CDB18E157C300D16FC4 /* CCDisplayFactory.cpp in Sources */, 15D8B243168318C3006C7997 /* SimpleAudioEngine_objc.m in Sources */, 8C583FAD169DB6D500F63A10 /* CCEditBox.cpp in Sources */, - 89419D03195701D800BFCA27 /* RPGBattlePlayerSprite.cpp in Sources */, 37C62CF018E157C300D16FC4 /* UIHelper.cpp in Sources */, - 89419D13195701D800BFCA27 /* RPGResultsLogic.cpp in Sources */, 8C583FAE169DB6D500F63A10 /* CCEditBoxImplMac.mm in Sources */, + 8974E5061A43071300D343A3 /* RPGMapMenuLayer.cpp in Sources */, 1AFAF8CA16D3886000DB1158 /* AppDelegate.cpp in Sources */, 1A40E75B1727BFC6006D4861 /* Animation.cpp in Sources */, 1A40E75C1727BFC6006D4861 /* AnimationState.cpp in Sources */, + 8974E4FE1A43071300D343A3 /* RPGComputingResults.cpp in Sources */, 1A40E75D1727BFC6006D4861 /* AnimationStateData.cpp in Sources */, + 8974E4FB1A43071300D343A3 /* RPGBattleMonsterSprite.cpp in Sources */, 1A40E75E1727BFC6006D4861 /* Atlas.cpp in Sources */, 37C62CE918E157C300D16FC4 /* CCComRender.cpp in Sources */, 1A40E75F1727BFC6006D4861 /* AtlasAttachmentLoader.cpp in Sources */, @@ -2927,32 +2879,29 @@ 37C62CFD18E157C300D16FC4 /* UISlider.cpp in Sources */, 1A40E7611727BFC6006D4861 /* AttachmentLoader.cpp in Sources */, 1A40E7621727BFC6006D4861 /* Bone.cpp in Sources */, - 89419D0F195701D800BFCA27 /* RPGMapRoleSprite.cpp in Sources */, 1A40E7631727BFC6006D4861 /* BoneData.cpp in Sources */, 37C62CE818E157C300D16FC4 /* CCComController.cpp in Sources */, 2964940F19518DD100BE20D8 /* CCNodeReader.cpp in Sources */, - 89419D01195701D800BFCA27 /* RPGBattleMenu.cpp in Sources */, 37C62CDC18E157C300D16FC4 /* CCDisplayManager.cpp in Sources */, 1A40E7641727BFC6006D4861 /* extension.cpp in Sources */, 37C62D0518E157C300D16FC4 /* LabelAtlasReader.cpp in Sources */, 37C62D0418E157C300D16FC4 /* ImageViewReader.cpp in Sources */, 1A40E7651727BFC6006D4861 /* Json.cpp in Sources */, 1A40E7661727BFC6006D4861 /* RegionAttachment.cpp in Sources */, - 89419D0B195701D800BFCA27 /* RPGMapEquipMenuLayer.cpp in Sources */, 1A40E7671727BFC6006D4861 /* Skeleton.cpp in Sources */, 1A40E7681727BFC6006D4861 /* SkeletonData.cpp in Sources */, 1A40E7691727BFC6006D4861 /* SkeletonJson.cpp in Sources */, 37C62CCF18E157C300D16FC4 /* CCActionFrameEasing.cpp in Sources */, 1A40E76A1727BFC6006D4861 /* Skin.cpp in Sources */, - 89419D10195701D800BFCA27 /* RPGMapSceneLayer.cpp in Sources */, 1A40E76B1727BFC6006D4861 /* Slot.cpp in Sources */, - 89419B901957009700BFCA27 /* Convert.cpp in Sources */, 37C62CE218E157C300D16FC4 /* CCSpriteFrameCacheHelper.cpp in Sources */, 1A40E76C1727BFC6006D4861 /* SlotData.cpp in Sources */, + 8974E5111A43072E00D343A3 /* CppSQLite3.cpp in Sources */, 1A40E76D1727BFC6006D4861 /* spine-cocos2dx.cpp in Sources */, 37C62D0A18E157C300D16FC4 /* LoadingBarReader.cpp in Sources */, 1AB87042175E0AFA005D39BF /* CCSkeleton.cpp in Sources */, 1AB87043175E0AFA005D39BF /* CCSkeletonAnimation.cpp in Sources */, + 8974E50C1A43071300D343A3 /* RPGResultsLogic.cpp in Sources */, 1A9CE9821765A7FA000E3062 /* AssetsManager.cpp in Sources */, 1A9CE9A51765A7FA000E3062 /* LocalStorage.cpp in Sources */, 1A9CE9A61765A7FA000E3062 /* LocalStorageAndroid.cpp in Sources */, diff --git a/proj.mac/OzgGameRPG.xcodeproj/project.xcworkspace/xcshareddata/OzgGameRPG.xccheckout b/proj.mac/OzgGameRPG.xcodeproj/project.xcworkspace/xcshareddata/OzgGameRPG.xccheckout index a896f79..13e4e0b 100644 --- a/proj.mac/OzgGameRPG.xcodeproj/project.xcworkspace/xcshareddata/OzgGameRPG.xccheckout +++ b/proj.mac/OzgGameRPG.xcodeproj/project.xcworkspace/xcshareddata/OzgGameRPG.xccheckout @@ -5,7 +5,7 @@ IDESourceControlProjectFavoriteDictionaryKey IDESourceControlProjectIdentifier - 9A46C5CA-9AE9-4FB5-9510-F9F7042B8370 + E4487D45-00B9-4A24-BFCE-5C5DA22A218C IDESourceControlProjectName OzgGameRPG IDESourceControlProjectOriginsDictionary @@ -14,7 +14,7 @@ https://github.com/ouzhigang/OzgGameRPG.git IDESourceControlProjectPath - proj.mac/OzgGameRPG.xcodeproj/project.xcworkspace + proj.mac/OzgGameRPG.xcodeproj IDESourceControlProjectRelativeInstallPathDictionary C98AD18A18B5A6907222BB73E0D52A8C8449EF4A diff --git a/proj.mac/OzgGameRPG.xcodeproj/project.xcworkspace/xcuserdata/ouzhigang.xcuserdatad/UserInterfaceState.xcuserstate b/proj.mac/OzgGameRPG.xcodeproj/project.xcworkspace/xcuserdata/ouzhigang.xcuserdatad/UserInterfaceState.xcuserstate index c950d86..ce00b88 100644 Binary files a/proj.mac/OzgGameRPG.xcodeproj/project.xcworkspace/xcuserdata/ouzhigang.xcuserdatad/UserInterfaceState.xcuserstate and b/proj.mac/OzgGameRPG.xcodeproj/project.xcworkspace/xcuserdata/ouzhigang.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/proj.mac/OzgGameRPG.xcodeproj/xcuserdata/ouzhigang.xcuserdatad/xcschemes/OzgGameRPG.xcscheme b/proj.mac/OzgGameRPG.xcodeproj/xcuserdata/ouzhigang.xcuserdatad/xcschemes/OzgGameRPG.xcscheme index ca620f0..4ccd508 100644 --- a/proj.mac/OzgGameRPG.xcodeproj/xcuserdata/ouzhigang.xcuserdatad/xcschemes/OzgGameRPG.xcscheme +++ b/proj.mac/OzgGameRPG.xcodeproj/xcuserdata/ouzhigang.xcuserdatad/xcschemes/OzgGameRPG.xcscheme @@ -1,6 +1,6 @@ $(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A\lib;$(LibraryPath) - ../libs;../libs/JsonBox/include;$(IncludePath) $(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A\lib;$(LibraryPath) @@ -70,7 +69,7 @@ Disabled - $(ProjectDir)..\..\..\cocos2dx;$(ProjectDir)..\..\..\cocos2dx\include;$(ProjectDir)..\..\..\cocos2dx\kazmath\include;$(ProjectDir)..\..\..\cocos2dx\platform\win32;$(ProjectDir)..\..\..\cocos2dx\platform\third_party\win32;$(ProjectDir)..\..\..\cocos2dx\platform\third_party\win32\OGLES;$(ProjectDir)..\..\..\external;$(ProjectDir)..\..\..\external\chipmunk\include\chipmunk;$(ProjectDir)..\..\..\CocosDenshion\include;$(ProjectDir)..\..\..\extensions;..\Classes;..;%(AdditionalIncludeDirectories) + $(ProjectDir)..\..\..\cocos2dx;$(ProjectDir)..\..\..\cocos2dx\include;$(ProjectDir)..\..\..\cocos2dx\kazmath\include;$(ProjectDir)..\..\..\cocos2dx\platform\win32;$(ProjectDir)..\..\..\cocos2dx\platform\third_party\win32;$(ProjectDir)..\..\..\cocos2dx\platform\third_party\win32\OGLES;$(ProjectDir)..\..\..\external;$(ProjectDir)..\..\..\external\chipmunk\include\chipmunk;$(ProjectDir)..\..\..\CocosDenshion\include;$(ProjectDir)..\..\..\extensions;..\Classes;..\libs;..\libs\JsonBox\include;..;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;_USE_MATH_DEFINES;GL_GLEXT_PROTOTYPES;CC_ENABLE_CHIPMUNK_INTEGRATION=1;COCOS2D_DEBUG=1;_CRT_SECURE_NO_WARNINGS;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) true EnableFastChecks diff --git a/proj.win32/OzgGameRPG.vcxproj.filters b/proj.win32/OzgGameRPG.vcxproj.filters index 2ee28fe..40f038f 100644 --- a/proj.win32/OzgGameRPG.vcxproj.filters +++ b/proj.win32/OzgGameRPG.vcxproj.filters @@ -8,10 +8,10 @@ {bb6c862e-70e9-49d9-81b7-3829a6f50471} - {13a787af-7658-4f38-a8cf-a43f73fab5d1} + {deb8d010-b431-414a-9950-3769bd11d1a7} - {ab033c4b-ae96-4497-9723-ec847d061b73} + {6940fc52-7355-4a4d-8a85-d157336aa714} @@ -96,12 +96,6 @@ Classes - - Classes\libs - - - Classes\libs - Classes\libs\JsonBox @@ -126,6 +120,12 @@ Classes\libs\JsonBox + + Classes\libs + + + Classes\libs + diff --git a/proj.win32/main.cpp b/proj.win32/main.cpp index c5374e0..2112217 100644 --- a/proj.win32/main.cpp +++ b/proj.win32/main.cpp @@ -16,6 +16,6 @@ int APIENTRY _tWinMain(HINSTANCE hInstance, AppDelegate app; CCEGLView* eglView = CCEGLView::sharedOpenGLView(); eglView->setViewName("OzgGameRPG"); - eglView->setFrameSize(960, 640); + eglView->setFrameSize(960, 640); return CCApplication::sharedApplication()->run(); } diff --git a/proj.winrt/OzgGameRPG.vcxproj b/proj.winrt/OzgGameRPG.vcxproj index 6fd1798..9a3e6bc 100644 --- a/proj.winrt/OzgGameRPG.vcxproj +++ b/proj.winrt/OzgGameRPG.vcxproj @@ -130,7 +130,7 @@ pch.h $(IntDir)pch.pch - $(ProjectDir)..\..\..\cocos2dx\platform\third_party\winrt\angle\include;$(ProjectDir)..\..\..\cocos2dx;$(ProjectDir)..\..\..\cocos2dx\include;$(ProjectDir)..\..\..\cocos2dx\kazmath\include;$(ProjectDir)..\..\..\cocos2dx\platform\winrt;$(ProjectDir)..\..\..\external;$(ProjectDir)..\..\..\external\chipmunk\include\chipmunk;$(ProjectDir)..\..\..\CocosDenshion\include;$(ProjectDir)..\..\..\extensions;..\Classes;%(AdditionalIncludeDirectories) + $(ProjectDir)..\..\..\cocos2dx\platform\third_party\winrt\angle\include;$(ProjectDir)..\..\..\cocos2dx;$(ProjectDir)..\..\..\cocos2dx\include;$(ProjectDir)..\..\..\cocos2dx\kazmath\include;$(ProjectDir)..\..\..\cocos2dx\platform\winrt;$(ProjectDir)..\..\..\external;$(ProjectDir)..\..\..\external\chipmunk\include\chipmunk;$(ProjectDir)..\..\..\CocosDenshion\include;$(ProjectDir)..\..\..\extensions;..\Classes;$(ProjectDir)..\..\..\cocos2dx\platform\third_party\winrt;%(AdditionalIncludeDirectories) 4267;4251;4244;4453;%(DisableSpecificWarnings) diff --git a/proj.winrt/OzgGameRPG_2013.vcxproj b/proj.winrt/OzgGameRPG_2013.vcxproj index 5237df0..4405451 100644 --- a/proj.winrt/OzgGameRPG_2013.vcxproj +++ b/proj.winrt/OzgGameRPG_2013.vcxproj @@ -132,7 +132,7 @@ pch.h $(IntDir)pch.pch - $(ProjectDir)..\..\..\cocos2dx\platform\third_party\winrt\angle\include;$(ProjectDir)..\..\..\cocos2dx;$(ProjectDir)..\..\..\cocos2dx\include;$(ProjectDir)..\..\..\cocos2dx\kazmath\include;$(ProjectDir)..\..\..\cocos2dx\platform\winrt;$(ProjectDir)..\..\..\external;$(ProjectDir)..\..\..\external\chipmunk\include\chipmunk;$(ProjectDir)..\..\..\CocosDenshion\include;$(ProjectDir)..\..\..\extensions;..\Classes;%(AdditionalIncludeDirectories) + $(ProjectDir)..\..\..\cocos2dx\platform\third_party\winrt\angle\include;$(ProjectDir)..\..\..\cocos2dx;$(ProjectDir)..\..\..\cocos2dx\include;$(ProjectDir)..\..\..\cocos2dx\kazmath\include;$(ProjectDir)..\..\..\cocos2dx\platform\winrt;$(ProjectDir)..\..\..\external;$(ProjectDir)..\..\..\external\chipmunk\include\chipmunk;$(ProjectDir)..\..\..\CocosDenshion\include;$(ProjectDir)..\..\..\extensions;..\Classes;$(ProjectDir)..\..\..\cocos2dx\platform\third_party\winrt;%(AdditionalIncludeDirectories) 4267;4251;4244;4453;%(DisableSpecificWarnings) diff --git a/proj.winrt/TemporaryKey.pfx b/proj.winrt/TemporaryKey.pfx index 2471fd4..cda1890 100644 Binary files a/proj.winrt/TemporaryKey.pfx and b/proj.winrt/TemporaryKey.pfx differ diff --git a/proj.wp8-xaml/OzgGameRPG.sln b/proj.wp8-xaml/OzgGameRPG.sln index df53e82..fbf1ca4 100644 --- a/proj.wp8-xaml/OzgGameRPG.sln +++ b/proj.wp8-xaml/OzgGameRPG.sln @@ -1,20 +1,20 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2012 +# Visual Studio Express 2012 for Windows Phone Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OzgGameRPG", "OzgGameRPG\OzgGameRPG\OzgGameRPG.csproj", "{D90B344F-2FBB-489E-B668-271AE7B196D6}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "OzgGameRPGComponent", "OzgGameRPG\OzgGameRPGComponent\OzgGameRPGComponent.vcxproj", "{A4834EEA-6196-4053-94DB-FE9F3A75F67C}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CocosDenshion", "..\..\..\CocosDenshion\proj.wp8\CocosDenshion.vcxproj", "{72DDD46B-55B1-4531-9EEA-72081ACBCAA2}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libBox2D", "..\..\..\external\Box2D\proj.wp8\Box2D.vcxproj", "{79FC91D4-974C-4BC7-8E8C-79E194437DE7}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libchipmunk", "..\..\..\external\chipmunk\proj.wp8\chipmunk.vcxproj", "{3AD76EA1-D698-40D2-B04D-D9AB8171F40B}" -EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libcocos2d", "..\..\..\cocos2dx\proj.wp8\libcocos2d.vcxproj", "{871AADCE-3905-48EF-AC2B-C67C335B0DCC}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libExtensions", "..\..\..\extensions\proj.wp8\libExtensions.vcxproj", "{A5CE59F9-2785-4E08-BD3C-0F370EECA439}" EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Box2D", "..\..\..\external\Box2D\proj.wp8\Box2D.vcxproj", "{B04642CC-E2C3-4388-8EB9-19BA3922060C}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "chipmunk", "..\..\..\external\chipmunk\proj.wp8\chipmunk.vcxproj", "{3AD76EA1-D698-40D2-B04D-D9AB8171F40B}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -103,50 +103,6 @@ Global {72DDD46B-55B1-4531-9EEA-72081ACBCAA2}.Release|x64.ActiveCfg = Release|Win32 {72DDD46B-55B1-4531-9EEA-72081ACBCAA2}.Release|x86.ActiveCfg = Release|Win32 {72DDD46B-55B1-4531-9EEA-72081ACBCAA2}.Release|x86.Build.0 = Release|Win32 - {79FC91D4-974C-4BC7-8E8C-79E194437DE7}.Debug|Any CPU.ActiveCfg = Debug|Win32 - {79FC91D4-974C-4BC7-8E8C-79E194437DE7}.Debug|ARM.ActiveCfg = Debug|ARM - {79FC91D4-974C-4BC7-8E8C-79E194437DE7}.Debug|ARM.Build.0 = Debug|ARM - {79FC91D4-974C-4BC7-8E8C-79E194437DE7}.Debug|Mixed Platforms.ActiveCfg = Debug|Win32 - {79FC91D4-974C-4BC7-8E8C-79E194437DE7}.Debug|Mixed Platforms.Build.0 = Debug|Win32 - {79FC91D4-974C-4BC7-8E8C-79E194437DE7}.Debug|Win32.ActiveCfg = Debug|Win32 - {79FC91D4-974C-4BC7-8E8C-79E194437DE7}.Debug|Win32.Build.0 = Debug|Win32 - {79FC91D4-974C-4BC7-8E8C-79E194437DE7}.Debug|x64.ActiveCfg = Debug|x64 - {79FC91D4-974C-4BC7-8E8C-79E194437DE7}.Debug|x64.Build.0 = Debug|x64 - {79FC91D4-974C-4BC7-8E8C-79E194437DE7}.Debug|x86.ActiveCfg = Debug|Win32 - {79FC91D4-974C-4BC7-8E8C-79E194437DE7}.Debug|x86.Build.0 = Debug|Win32 - {79FC91D4-974C-4BC7-8E8C-79E194437DE7}.Release|Any CPU.ActiveCfg = Release|Win32 - {79FC91D4-974C-4BC7-8E8C-79E194437DE7}.Release|ARM.ActiveCfg = Release|ARM - {79FC91D4-974C-4BC7-8E8C-79E194437DE7}.Release|ARM.Build.0 = Release|ARM - {79FC91D4-974C-4BC7-8E8C-79E194437DE7}.Release|Mixed Platforms.ActiveCfg = Release|Win32 - {79FC91D4-974C-4BC7-8E8C-79E194437DE7}.Release|Mixed Platforms.Build.0 = Release|Win32 - {79FC91D4-974C-4BC7-8E8C-79E194437DE7}.Release|Win32.ActiveCfg = Release|Win32 - {79FC91D4-974C-4BC7-8E8C-79E194437DE7}.Release|Win32.Build.0 = Release|Win32 - {79FC91D4-974C-4BC7-8E8C-79E194437DE7}.Release|x64.ActiveCfg = Release|x64 - {79FC91D4-974C-4BC7-8E8C-79E194437DE7}.Release|x64.Build.0 = Release|x64 - {79FC91D4-974C-4BC7-8E8C-79E194437DE7}.Release|x86.ActiveCfg = Release|Win32 - {79FC91D4-974C-4BC7-8E8C-79E194437DE7}.Release|x86.Build.0 = Release|Win32 - {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Debug|Any CPU.ActiveCfg = Debug|Win32 - {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Debug|ARM.ActiveCfg = Debug|ARM - {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Debug|ARM.Build.0 = Debug|ARM - {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Debug|Mixed Platforms.ActiveCfg = Debug|Win32 - {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Debug|Mixed Platforms.Build.0 = Debug|Win32 - {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Debug|Win32.ActiveCfg = Debug|Win32 - {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Debug|Win32.Build.0 = Debug|Win32 - {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Debug|x64.ActiveCfg = Debug|x64 - {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Debug|x64.Build.0 = Debug|x64 - {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Debug|x86.ActiveCfg = Debug|Win32 - {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Debug|x86.Build.0 = Debug|Win32 - {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Release|Any CPU.ActiveCfg = Release|Win32 - {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Release|ARM.ActiveCfg = Release|ARM - {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Release|ARM.Build.0 = Release|ARM - {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Release|Mixed Platforms.ActiveCfg = Release|Win32 - {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Release|Mixed Platforms.Build.0 = Release|Win32 - {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Release|Win32.ActiveCfg = Release|Win32 - {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Release|Win32.Build.0 = Release|Win32 - {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Release|x64.ActiveCfg = Release|x64 - {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Release|x64.Build.0 = Release|x64 - {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Release|x86.ActiveCfg = Release|Win32 - {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Release|x86.Build.0 = Release|Win32 {871AADCE-3905-48EF-AC2B-C67C335B0DCC}.Debug|Any CPU.ActiveCfg = Debug|Win32 {871AADCE-3905-48EF-AC2B-C67C335B0DCC}.Debug|ARM.ActiveCfg = Debug|ARM {871AADCE-3905-48EF-AC2B-C67C335B0DCC}.Debug|ARM.Build.0 = Debug|ARM @@ -187,6 +143,46 @@ Global {A5CE59F9-2785-4E08-BD3C-0F370EECA439}.Release|x64.ActiveCfg = Release|Win32 {A5CE59F9-2785-4E08-BD3C-0F370EECA439}.Release|x86.ActiveCfg = Release|Win32 {A5CE59F9-2785-4E08-BD3C-0F370EECA439}.Release|x86.Build.0 = Release|Win32 + {B04642CC-E2C3-4388-8EB9-19BA3922060C}.Debug|Any CPU.ActiveCfg = Debug|Win32 + {B04642CC-E2C3-4388-8EB9-19BA3922060C}.Debug|ARM.ActiveCfg = Debug|ARM + {B04642CC-E2C3-4388-8EB9-19BA3922060C}.Debug|ARM.Build.0 = Debug|ARM + {B04642CC-E2C3-4388-8EB9-19BA3922060C}.Debug|Mixed Platforms.ActiveCfg = Debug|Win32 + {B04642CC-E2C3-4388-8EB9-19BA3922060C}.Debug|Mixed Platforms.Build.0 = Debug|Win32 + {B04642CC-E2C3-4388-8EB9-19BA3922060C}.Debug|Win32.ActiveCfg = Debug|Win32 + {B04642CC-E2C3-4388-8EB9-19BA3922060C}.Debug|Win32.Build.0 = Debug|Win32 + {B04642CC-E2C3-4388-8EB9-19BA3922060C}.Debug|x64.ActiveCfg = Debug|Win32 + {B04642CC-E2C3-4388-8EB9-19BA3922060C}.Debug|x86.ActiveCfg = Debug|Win32 + {B04642CC-E2C3-4388-8EB9-19BA3922060C}.Debug|x86.Build.0 = Debug|Win32 + {B04642CC-E2C3-4388-8EB9-19BA3922060C}.Release|Any CPU.ActiveCfg = Release|Win32 + {B04642CC-E2C3-4388-8EB9-19BA3922060C}.Release|ARM.ActiveCfg = Release|ARM + {B04642CC-E2C3-4388-8EB9-19BA3922060C}.Release|ARM.Build.0 = Release|ARM + {B04642CC-E2C3-4388-8EB9-19BA3922060C}.Release|Mixed Platforms.ActiveCfg = Release|Win32 + {B04642CC-E2C3-4388-8EB9-19BA3922060C}.Release|Mixed Platforms.Build.0 = Release|Win32 + {B04642CC-E2C3-4388-8EB9-19BA3922060C}.Release|Win32.ActiveCfg = Release|Win32 + {B04642CC-E2C3-4388-8EB9-19BA3922060C}.Release|Win32.Build.0 = Release|Win32 + {B04642CC-E2C3-4388-8EB9-19BA3922060C}.Release|x64.ActiveCfg = Release|Win32 + {B04642CC-E2C3-4388-8EB9-19BA3922060C}.Release|x86.ActiveCfg = Release|Win32 + {B04642CC-E2C3-4388-8EB9-19BA3922060C}.Release|x86.Build.0 = Release|Win32 + {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Debug|Any CPU.ActiveCfg = Debug|Win32 + {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Debug|ARM.ActiveCfg = Debug|ARM + {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Debug|ARM.Build.0 = Debug|ARM + {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Debug|Mixed Platforms.ActiveCfg = Debug|Win32 + {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Debug|Mixed Platforms.Build.0 = Debug|Win32 + {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Debug|Win32.ActiveCfg = Debug|Win32 + {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Debug|Win32.Build.0 = Debug|Win32 + {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Debug|x64.ActiveCfg = Debug|Win32 + {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Debug|x86.ActiveCfg = Debug|Win32 + {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Debug|x86.Build.0 = Debug|Win32 + {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Release|Any CPU.ActiveCfg = Release|Win32 + {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Release|ARM.ActiveCfg = Release|ARM + {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Release|ARM.Build.0 = Release|ARM + {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Release|Mixed Platforms.ActiveCfg = Release|Win32 + {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Release|Mixed Platforms.Build.0 = Release|Win32 + {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Release|Win32.ActiveCfg = Release|Win32 + {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Release|Win32.Build.0 = Release|Win32 + {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Release|x64.ActiveCfg = Release|Win32 + {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Release|x86.ActiveCfg = Release|Win32 + {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Release|x86.Build.0 = Release|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/proj.wp8-xaml/OzgGameRPG/OzgGameRPG/App.xaml.cs b/proj.wp8-xaml/OzgGameRPG/OzgGameRPG/App.xaml.cs index 19bb370..ce05496 100644 --- a/proj.wp8-xaml/OzgGameRPG/OzgGameRPG/App.xaml.cs +++ b/proj.wp8-xaml/OzgGameRPG/OzgGameRPG/App.xaml.cs @@ -167,13 +167,11 @@ namespace PhoneDirect3DXamlAppInterop } else { - // If the app has received a 'reset' navigation, then we need to check - // on the next navigation to see if the page stack should be reset RootFrame.Navigated += ClearBackStackAfterReset; } _isResume = false; } - + private void ClearBackStackAfterReset(object sender, NavigationEventArgs e) { // Unregister the event so it doesn't get called again diff --git a/proj.wp8-xaml/OzgGameRPG/OzgGameRPG/MainPage.xaml.cs b/proj.wp8-xaml/OzgGameRPG/OzgGameRPG/MainPage.xaml.cs index a4500a0..c9e7bde 100644 --- a/proj.wp8-xaml/OzgGameRPG/OzgGameRPG/MainPage.xaml.cs +++ b/proj.wp8-xaml/OzgGameRPG/OzgGameRPG/MainPage.xaml.cs @@ -15,6 +15,7 @@ using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Animation; using System.Windows.Shapes; +using Windows.Graphics.Display; using Microsoft.Phone.Controls; using PhoneDirect3DXamlAppComponent; using System.Threading; @@ -65,6 +66,9 @@ namespace PhoneDirect3DXamlAppInterop DrawingSurfaceBackground.SetBackgroundContentProvider(m_d3dInterop.CreateContentProvider()); DrawingSurfaceBackground.SetBackgroundManipulationHandler(m_d3dInterop); + // Set the preferred device orientation + m_d3dInterop.WindowOrientation = DisplayOrientations.Landscape; + // Hook-up Cocos2d-x delegates m_d3dInterop.SetCocos2dEventDelegate(OnCocos2dEvent); m_d3dInterop.SetCocos2dMessageBoxDelegate(OnCocos2dMessageBoxEvent); diff --git a/proj.wp8-xaml/OzgGameRPG/OzgGameRPGComponent/OzgGameRPGComponent.vcxproj b/proj.wp8-xaml/OzgGameRPG/OzgGameRPGComponent/OzgGameRPGComponent.vcxproj index 33b5c4c..7f0a0ac 100644 --- a/proj.wp8-xaml/OzgGameRPG/OzgGameRPGComponent/OzgGameRPGComponent.vcxproj +++ b/proj.wp8-xaml/OzgGameRPG/OzgGameRPGComponent/OzgGameRPGComponent.vcxproj @@ -72,7 +72,7 @@ pch.h $(WindowsSDK_MetadataPath);$(AdditionalUsingDirectories) true - $(ProjectDir)..\..\..\..\..\cocos2dx\include;$(ProjectDir)..\..\..\..\..\cocos2dx;$(ProjectDir)..\..\..\..\..\cocos2dx\platform\wp8;$(ProjectDir)..\..\..\..\..\cocos2dx\platform\winrt;$(ProjectDir)..\..\..\Classes;$(ProjectDir)..\..\..\..\..\cocos2dx\platform\third_party\winrt\angle\include;$(ProjectDir)..\..\..\..\..\CocosDenshion\include;$(ProjectDir)..\..\..\..\..\extensions;$(ProjectDir)..\..\..\..\..\extensions\network;$(ProjectDir)..\..\..\..\..\cocos2dx\platform\third_party\wp8\libcurl;$(ProjectDir)..\..\..\..\..\external;$(ProjectDir)..\..\..\..\..\external\libwebsockets\wp8\include;$(ProjectDir)..\..\..\..\..\external\chipmunk\include\chipmunk;$(ProjectDir)..\..\..\..\..\cocos2dx\kazmath\include;%(AdditionalIncludeDirectories) + $(ProjectDir)..\..\..\..\..\cocos2dx\include;$(ProjectDir)..\..\..\..\..\cocos2dx;$(ProjectDir)..\..\..\..\..\cocos2dx\platform\wp8;$(ProjectDir)..\..\..\..\..\cocos2dx\platform\winrt;$(ProjectDir)..\..\..\Classes;$(ProjectDir)..\..\..\..\..\cocos2dx\platform\third_party\winrt\angle\include;$(ProjectDir)..\..\..\..\..\CocosDenshion\include;$(ProjectDir)..\..\..\..\..\extensions;$(ProjectDir)..\..\..\..\..\extensions\network;$(ProjectDir)..\..\..\..\..\cocos2dx\platform\third_party\wp8\;$(ProjectDir)..\..\..\..\..\cocos2dx\platform\third_party\wp8\libcurl;$(ProjectDir)..\..\..\..\..\external;$(ProjectDir)..\..\..\..\..\external\libwebsockets\wp8\include;$(ProjectDir)..\..\..\..\..\external\chipmunk\include\chipmunk;$(ProjectDir)..\..\..\..\..\cocos2dx\kazmath\include;%(AdditionalIncludeDirectories) 4267;4251;4244;4453;%(DisableSpecificWarnings) pch.h @@ -92,7 +92,7 @@ pch.h $(WindowsSDK_MetadataPath);$(AdditionalUsingDirectories) true - $(ProjectDir)..\..\..\..\..\cocos2dx\include;$(ProjectDir)..\..\..\..\..\cocos2dx;$(ProjectDir)..\..\..\..\..\cocos2dx\platform\wp8;$(ProjectDir)..\..\..\..\..\cocos2dx\platform\winrt;$(ProjectDir)..\..\..\Classes;$(ProjectDir)..\..\..\..\..\cocos2dx\platform\third_party\winrt\angle\include;$(ProjectDir)..\..\..\..\..\CocosDenshion\include;$(ProjectDir)..\..\..\..\..\extensions;$(ProjectDir)..\..\..\..\..\extensions\network;$(ProjectDir)..\..\..\..\..\cocos2dx\platform\third_party\wp8\libcurl;$(ProjectDir)..\..\..\..\..\external;$(ProjectDir)..\..\..\..\..\external\libwebsockets\wp8\include;$(ProjectDir)..\..\..\..\..\external\chipmunk\include\chipmunk;$(ProjectDir)..\..\..\..\..\cocos2dx\kazmath\include;%(AdditionalIncludeDirectories) + $(ProjectDir)..\..\..\..\..\cocos2dx\include;$(ProjectDir)..\..\..\..\..\cocos2dx;$(ProjectDir)..\..\..\..\..\cocos2dx\platform\wp8;$(ProjectDir)..\..\..\..\..\cocos2dx\platform\winrt;$(ProjectDir)..\..\..\Classes;$(ProjectDir)..\..\..\..\..\cocos2dx\platform\third_party\winrt\angle\include;$(ProjectDir)..\..\..\..\..\CocosDenshion\include;$(ProjectDir)..\..\..\..\..\extensions;$(ProjectDir)..\..\..\..\..\extensions\network;$(ProjectDir)..\..\..\..\..\cocos2dx\platform\third_party\wp8\;$(ProjectDir)..\..\..\..\..\cocos2dx\platform\third_party\wp8\libcurl;$(ProjectDir)..\..\..\..\..\external;$(ProjectDir)..\..\..\..\..\external\libwebsockets\wp8\include;$(ProjectDir)..\..\..\..\..\external\chipmunk\include\chipmunk;$(ProjectDir)..\..\..\..\..\cocos2dx\kazmath\include;%(AdditionalIncludeDirectories) 4267;4251;4244;4453;%(DisableSpecificWarnings) pch.h @@ -112,7 +112,7 @@ pch.h $(WindowsSDK_MetadataPath);$(AdditionalUsingDirectories) true - $(ProjectDir)..\..\..\..\..\cocos2dx\include;$(ProjectDir)..\..\..\..\..\cocos2dx;$(ProjectDir)..\..\..\..\..\cocos2dx\platform\wp8;$(ProjectDir)..\..\..\..\..\cocos2dx\platform\winrt;$(ProjectDir)..\..\..\Classes;$(ProjectDir)..\..\..\..\..\cocos2dx\platform\third_party\winrt\angle\include;$(ProjectDir)..\..\..\..\..\CocosDenshion\include;$(ProjectDir)..\..\..\..\..\extensions;$(ProjectDir)..\..\..\..\..\extensions\network;$(ProjectDir)..\..\..\..\..\cocos2dx\platform\third_party\wp8\libcurl;$(ProjectDir)..\..\..\..\..\external;$(ProjectDir)..\..\..\..\..\external\libwebsockets\wp8\include;$(ProjectDir)..\..\..\..\..\external\chipmunk\include\chipmunk;$(ProjectDir)..\..\..\..\..\cocos2dx\kazmath\include;%(AdditionalIncludeDirectories) + $(ProjectDir)..\..\..\..\..\cocos2dx\include;$(ProjectDir)..\..\..\..\..\cocos2dx;$(ProjectDir)..\..\..\..\..\cocos2dx\platform\wp8;$(ProjectDir)..\..\..\..\..\cocos2dx\platform\winrt;$(ProjectDir)..\..\..\Classes;$(ProjectDir)..\..\..\..\..\cocos2dx\platform\third_party\winrt\angle\include;$(ProjectDir)..\..\..\..\..\CocosDenshion\include;$(ProjectDir)..\..\..\..\..\extensions;$(ProjectDir)..\..\..\..\..\extensions\network;$(ProjectDir)..\..\..\..\..\cocos2dx\platform\third_party\wp8\;$(ProjectDir)..\..\..\..\..\cocos2dx\platform\third_party\wp8\libcurl;$(ProjectDir)..\..\..\..\..\external;$(ProjectDir)..\..\..\..\..\external\libwebsockets\wp8\include;$(ProjectDir)..\..\..\..\..\external\chipmunk\include\chipmunk;$(ProjectDir)..\..\..\..\..\cocos2dx\kazmath\include;%(AdditionalIncludeDirectories) 4267;4251;4244;4453;%(DisableSpecificWarnings) pch.h @@ -132,7 +132,7 @@ pch.h $(WindowsSDK_MetadataPath);$(AdditionalUsingDirectories) true - $(ProjectDir)..\..\..\..\..\cocos2dx\include;$(ProjectDir)..\..\..\..\..\cocos2dx;$(ProjectDir)..\..\..\..\..\cocos2dx\platform\wp8;$(ProjectDir)..\..\..\..\..\cocos2dx\platform\winrt;$(ProjectDir)..\..\..\Classes;$(ProjectDir)..\..\..\..\..\cocos2dx\platform\third_party\winrt\angle\include;$(ProjectDir)..\..\..\..\..\CocosDenshion\include;$(ProjectDir)..\..\..\..\..\extensions;$(ProjectDir)..\..\..\..\..\extensions\network;$(ProjectDir)..\..\..\..\..\cocos2dx\platform\third_party\wp8\libcurl;$(ProjectDir)..\..\..\..\..\external;$(ProjectDir)..\..\..\..\..\external\libwebsockets\wp8\include;$(ProjectDir)..\..\..\..\..\external\chipmunk\include\chipmunk;$(ProjectDir)..\..\..\..\..\cocos2dx\kazmath\include;%(AdditionalIncludeDirectories) + $(ProjectDir)..\..\..\..\..\cocos2dx\include;$(ProjectDir)..\..\..\..\..\cocos2dx;$(ProjectDir)..\..\..\..\..\cocos2dx\platform\wp8;$(ProjectDir)..\..\..\..\..\cocos2dx\platform\winrt;$(ProjectDir)..\..\..\Classes;$(ProjectDir)..\..\..\..\..\cocos2dx\platform\third_party\winrt\angle\include;$(ProjectDir)..\..\..\..\..\CocosDenshion\include;$(ProjectDir)..\..\..\..\..\extensions;$(ProjectDir)..\..\..\..\..\extensions\network;$(ProjectDir)..\..\..\..\..\cocos2dx\platform\third_party\wp8\;$(ProjectDir)..\..\..\..\..\cocos2dx\platform\third_party\wp8\libcurl;$(ProjectDir)..\..\..\..\..\external;$(ProjectDir)..\..\..\..\..\external\libwebsockets\wp8\include;$(ProjectDir)..\..\..\..\..\external\chipmunk\include\chipmunk;$(ProjectDir)..\..\..\..\..\cocos2dx\kazmath\include;%(AdditionalIncludeDirectories) 4267;4251;4244;4453;%(DisableSpecificWarnings) pch.h @@ -199,7 +199,7 @@ {a5ce59f9-2785-4e08-bd3c-0f370eeca439} - {79fc91d4-974c-4bc7-8e8c-79e194437de7} + {b04642cc-e2c3-4388-8eb9-19ba3922060c} {3ad76ea1-d698-40d2-b04d-d9ab8171f40b} diff --git a/proj.wp8/OzgGameRPG.sln b/proj.wp8/OzgGameRPG.sln index 8941f40..f7db7a4 100644 --- a/proj.wp8/OzgGameRPG.sln +++ b/proj.wp8/OzgGameRPG.sln @@ -1,6 +1,6 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2012 +# Visual Studio Express 2012 for Windows Phone Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "OzgGameRPG", "OzgGameRPG.vcxproj", "{2AC777CA-2D3B-41C8-98AC-B6ED1A4B0988}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libcocos2d", "..\..\..\cocos2dx\proj.wp8\libcocos2d.vcxproj", "{871AADCE-3905-48EF-AC2B-C67C335B0DCC}" @@ -9,9 +9,9 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CocosDenshion", "..\..\..\C EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libExtensions", "..\..\..\extensions\proj.wp8\libExtensions.vcxproj", "{A5CE59F9-2785-4E08-BD3C-0F370EECA439}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libBox2D", "..\..\..\external\Box2D\proj.wp8\Box2D.vcxproj", "{79FC91D4-974C-4BC7-8E8C-79E194437DE7}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Box2D", "..\..\..\external\Box2D\proj.wp8\Box2D.vcxproj", "{B04642CC-E2C3-4388-8EB9-19BA3922060C}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libchipmunk", "..\..\..\external\chipmunk\proj.wp8\chipmunk.vcxproj", "{3AD76EA1-D698-40D2-B04D-D9AB8171F40B}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "chipmunk", "..\..\..\external\chipmunk\proj.wp8\chipmunk.vcxproj", "{3AD76EA1-D698-40D2-B04D-D9AB8171F40B}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -67,30 +67,26 @@ Global {A5CE59F9-2785-4E08-BD3C-0F370EECA439}.Release|Win32.ActiveCfg = Release|Win32 {A5CE59F9-2785-4E08-BD3C-0F370EECA439}.Release|Win32.Build.0 = Release|Win32 {A5CE59F9-2785-4E08-BD3C-0F370EECA439}.Release|x64.ActiveCfg = Release|Win32 - {79FC91D4-974C-4BC7-8E8C-79E194437DE7}.Debug|ARM.ActiveCfg = Debug|ARM - {79FC91D4-974C-4BC7-8E8C-79E194437DE7}.Debug|ARM.Build.0 = Debug|ARM - {79FC91D4-974C-4BC7-8E8C-79E194437DE7}.Debug|Win32.ActiveCfg = Debug|Win32 - {79FC91D4-974C-4BC7-8E8C-79E194437DE7}.Debug|Win32.Build.0 = Debug|Win32 - {79FC91D4-974C-4BC7-8E8C-79E194437DE7}.Debug|x64.ActiveCfg = Debug|x64 - {79FC91D4-974C-4BC7-8E8C-79E194437DE7}.Debug|x64.Build.0 = Debug|x64 - {79FC91D4-974C-4BC7-8E8C-79E194437DE7}.Release|ARM.ActiveCfg = Release|ARM - {79FC91D4-974C-4BC7-8E8C-79E194437DE7}.Release|ARM.Build.0 = Release|ARM - {79FC91D4-974C-4BC7-8E8C-79E194437DE7}.Release|Win32.ActiveCfg = Release|Win32 - {79FC91D4-974C-4BC7-8E8C-79E194437DE7}.Release|Win32.Build.0 = Release|Win32 - {79FC91D4-974C-4BC7-8E8C-79E194437DE7}.Release|x64.ActiveCfg = Release|x64 - {79FC91D4-974C-4BC7-8E8C-79E194437DE7}.Release|x64.Build.0 = Release|x64 + {B04642CC-E2C3-4388-8EB9-19BA3922060C}.Debug|ARM.ActiveCfg = Debug|ARM + {B04642CC-E2C3-4388-8EB9-19BA3922060C}.Debug|ARM.Build.0 = Debug|ARM + {B04642CC-E2C3-4388-8EB9-19BA3922060C}.Debug|Win32.ActiveCfg = Debug|Win32 + {B04642CC-E2C3-4388-8EB9-19BA3922060C}.Debug|Win32.Build.0 = Debug|Win32 + {B04642CC-E2C3-4388-8EB9-19BA3922060C}.Debug|x64.ActiveCfg = Debug|Win32 + {B04642CC-E2C3-4388-8EB9-19BA3922060C}.Release|ARM.ActiveCfg = Release|ARM + {B04642CC-E2C3-4388-8EB9-19BA3922060C}.Release|ARM.Build.0 = Release|ARM + {B04642CC-E2C3-4388-8EB9-19BA3922060C}.Release|Win32.ActiveCfg = Release|Win32 + {B04642CC-E2C3-4388-8EB9-19BA3922060C}.Release|Win32.Build.0 = Release|Win32 + {B04642CC-E2C3-4388-8EB9-19BA3922060C}.Release|x64.ActiveCfg = Release|Win32 {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Debug|ARM.ActiveCfg = Debug|ARM {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Debug|ARM.Build.0 = Debug|ARM {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Debug|Win32.ActiveCfg = Debug|Win32 {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Debug|Win32.Build.0 = Debug|Win32 - {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Debug|x64.ActiveCfg = Debug|x64 - {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Debug|x64.Build.0 = Debug|x64 + {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Debug|x64.ActiveCfg = Debug|Win32 {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Release|ARM.ActiveCfg = Release|ARM {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Release|ARM.Build.0 = Release|ARM {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Release|Win32.ActiveCfg = Release|Win32 {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Release|Win32.Build.0 = Release|Win32 - {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Release|x64.ActiveCfg = Release|x64 - {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Release|x64.Build.0 = Release|x64 + {3AD76EA1-D698-40D2-B04D-D9AB8171F40B}.Release|x64.ActiveCfg = Release|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/proj.wp8/OzgGameRPG.vcxproj b/proj.wp8/OzgGameRPG.vcxproj index ebe9f44..295e15a 100644 --- a/proj.wp8/OzgGameRPG.vcxproj +++ b/proj.wp8/OzgGameRPG.vcxproj @@ -76,7 +76,7 @@ PSAPI_VERSION=2;WP8;_WP8;CC_ENABLE_CHIPMUNK_INTEGRATION=1;COCOS2D_DEBUG=1;_CRT_SECURE_NO_WARNINGS;_SCL_SECURE_NO_WARNINGS;GL_GLEXT_PROTOTYPES;CC_ENABLE_CHIPMUNK_INTEGRATION=1;%(PreprocessorDefinitions) Use pch.h - $(ProjectDir)..\..\..\cocos2dx\include;$(ProjectDir)..\..\..\cocos2dx;$(ProjectDir)..\..\..\cocos2dx\platform\wp8;$(ProjectDir)..\..\..\cocos2dx\platform\winrt;$(ProjectDir)..\Classes;$(ProjectDir)..\..\..\cocos2dx\platform\third_party\winrt\angle\include;$(ProjectDir)..\..\..\CocosDenshion\include;$(ProjectDir)..\..\..\extensions;$(ProjectDir)..\..\..\extensions\network;$(ProjectDir)..\..\..\cocos2dx\platform\third_party\wp8\libcurl;$(ProjectDir)..\..\..\external;$(ProjectDir)..\..\..\external\libwebsockets\wp8\include;$(ProjectDir)..\..\..\external\chipmunk\include\chipmunk;$(ProjectDir)..\..\..\cocos2dx\kazmath\include;%(AdditionalIncludeDirectories) + $(ProjectDir)..\..\..\cocos2dx\include;$(ProjectDir)..\..\..\cocos2dx;$(ProjectDir)..\..\..\cocos2dx\platform\wp8;$(ProjectDir)..\..\..\cocos2dx\platform\winrt;$(ProjectDir)..\Classes;$(ProjectDir)..\..\..\cocos2dx\platform\third_party\winrt\angle\include;$(ProjectDir)..\..\..\CocosDenshion\include;$(ProjectDir)..\..\..\extensions;$(ProjectDir)..\..\..\extensions\network;$(ProjectDir)..\..\..\cocos2dx\platform\third_party\wp8\;$(ProjectDir)..\..\..\cocos2dx\platform\third_party\wp8\libcurl;$(ProjectDir)..\..\..\external;$(ProjectDir)..\..\..\external\libwebsockets\wp8\include;$(ProjectDir)..\..\..\external\chipmunk\include\chipmunk;$(ProjectDir)..\..\..\cocos2dx\kazmath\include;%(AdditionalIncludeDirectories) true $(IntDir)$(TargetName).pch 4267;4251;4244;4453;%(DisableSpecificWarnings) @@ -104,7 +104,7 @@ PSAPI_VERSION=2;WP8;_WP8;CC_ENABLE_CHIPMUNK_INTEGRATION=1;_CRT_SECURE_NO_WARNINGS;_SCL_SECURE_NO_WARNINGS;GL_GLEXT_PROTOTYPES;CC_ENABLE_CHIPMUNK_INTEGRATION=1;%(PreprocessorDefinitions) Use pch.h - $(ProjectDir)..\..\..\cocos2dx\include;$(ProjectDir)..\..\..\cocos2dx;$(ProjectDir)..\..\..\cocos2dx\platform\wp8;$(ProjectDir)..\..\..\cocos2dx\platform\winrt;$(ProjectDir)..\Classes;$(ProjectDir)..\..\..\cocos2dx\platform\third_party\winrt\angle\include;$(ProjectDir)..\..\..\CocosDenshion\include;$(ProjectDir)..\..\..\extensions;$(ProjectDir)..\..\..\extensions\network;$(ProjectDir)..\..\..\cocos2dx\platform\third_party\wp8\libcurl;$(ProjectDir)..\..\..\external;$(ProjectDir)..\..\..\external\libwebsockets\wp8\include;$(ProjectDir)..\..\..\external\chipmunk\include\chipmunk;$(ProjectDir)..\..\..\cocos2dx\kazmath\include;%(AdditionalIncludeDirectories) + $(ProjectDir)..\..\..\cocos2dx\include;$(ProjectDir)..\..\..\cocos2dx;$(ProjectDir)..\..\..\cocos2dx\platform\wp8;$(ProjectDir)..\..\..\cocos2dx\platform\winrt;$(ProjectDir)..\Classes;$(ProjectDir)..\..\..\cocos2dx\platform\third_party\winrt\angle\include;$(ProjectDir)..\..\..\CocosDenshion\include;$(ProjectDir)..\..\..\extensions;$(ProjectDir)..\..\..\extensions\network;$(ProjectDir)..\..\..\cocos2dx\platform\third_party\wp8\;$(ProjectDir)..\..\..\cocos2dx\platform\third_party\wp8\libcurl;$(ProjectDir)..\..\..\external;$(ProjectDir)..\..\..\external\libwebsockets\wp8\include;$(ProjectDir)..\..\..\external\chipmunk\include\chipmunk;$(ProjectDir)..\..\..\cocos2dx\kazmath\include;%(AdditionalIncludeDirectories) true $(IntDir)$(TargetName).pch 4267;4251;4244;4453;%(DisableSpecificWarnings) @@ -131,7 +131,7 @@ PSAPI_VERSION=2;WP8;_WP8;CC_ENABLE_CHIPMUNK_INTEGRATION=1;COCOS2D_DEBUG=1;_CRT_SECURE_NO_WARNINGS;_SCL_SECURE_NO_WARNINGS;GL_GLEXT_PROTOTYPES;CC_ENABLE_CHIPMUNK_INTEGRATION=1;%(PreprocessorDefinitions) Use pch.h - $(ProjectDir)..\..\..\cocos2dx\include;$(ProjectDir)..\..\..\cocos2dx;$(ProjectDir)..\..\..\cocos2dx\platform\wp8;$(ProjectDir)..\..\..\cocos2dx\platform\winrt;$(ProjectDir)..\Classes;$(ProjectDir)..\..\..\cocos2dx\platform\third_party\winrt\angle\include;$(ProjectDir)..\..\..\CocosDenshion\include;$(ProjectDir)..\..\..\extensions;$(ProjectDir)..\..\..\extensions\network;$(ProjectDir)..\..\..\cocos2dx\platform\third_party\wp8\libcurl;$(ProjectDir)..\..\..\external;$(ProjectDir)..\..\..\external\libwebsockets\wp8\include;$(ProjectDir)..\..\..\external\chipmunk\include\chipmunk;$(ProjectDir)..\..\..\cocos2dx\kazmath\include;%(AdditionalIncludeDirectories) + $(ProjectDir)..\..\..\cocos2dx\include;$(ProjectDir)..\..\..\cocos2dx;$(ProjectDir)..\..\..\cocos2dx\platform\wp8;$(ProjectDir)..\..\..\cocos2dx\platform\winrt;$(ProjectDir)..\Classes;$(ProjectDir)..\..\..\cocos2dx\platform\third_party\winrt\angle\include;$(ProjectDir)..\..\..\CocosDenshion\include;$(ProjectDir)..\..\..\extensions;$(ProjectDir)..\..\..\extensions\network;$(ProjectDir)..\..\..\cocos2dx\platform\third_party\wp8\;$(ProjectDir)..\..\..\cocos2dx\platform\third_party\wp8\libcurl;$(ProjectDir)..\..\..\external;$(ProjectDir)..\..\..\external\libwebsockets\wp8\include;$(ProjectDir)..\..\..\external\chipmunk\include\chipmunk;$(ProjectDir)..\..\..\cocos2dx\kazmath\include;%(AdditionalIncludeDirectories) true $(IntDir)$(TargetName).pch 4267;4251;4244;4453;%(DisableSpecificWarnings) @@ -159,7 +159,7 @@ PSAPI_VERSION=2;WP8;_WP8;CC_ENABLE_CHIPMUNK_INTEGRATION=1;_CRT_SECURE_NO_WARNINGS;_SCL_SECURE_NO_WARNINGS;GL_GLEXT_PROTOTYPES;CC_ENABLE_CHIPMUNK_INTEGRATION=1;%(PreprocessorDefinitions) Use pch.h - $(ProjectDir)..\..\..\cocos2dx\include;$(ProjectDir)..\..\..\cocos2dx;$(ProjectDir)..\..\..\cocos2dx\platform\wp8;$(ProjectDir)..\..\..\cocos2dx\platform\winrt;$(ProjectDir)..\Classes;$(ProjectDir)..\..\..\cocos2dx\platform\third_party\winrt\angle\include;$(ProjectDir)..\..\..\CocosDenshion\include;$(ProjectDir)..\..\..\extensions;$(ProjectDir)..\..\..\extensions\network;$(ProjectDir)..\..\..\cocos2dx\platform\third_party\wp8\libcurl;$(ProjectDir)..\..\..\external;$(ProjectDir)..\..\..\external\libwebsockets\wp8\include;$(ProjectDir)..\..\..\external\chipmunk\include\chipmunk;$(ProjectDir)..\..\..\cocos2dx\kazmath\include;%(AdditionalIncludeDirectories) + $(ProjectDir)..\..\..\cocos2dx\include;$(ProjectDir)..\..\..\cocos2dx;$(ProjectDir)..\..\..\cocos2dx\platform\wp8;$(ProjectDir)..\..\..\cocos2dx\platform\winrt;$(ProjectDir)..\Classes;$(ProjectDir)..\..\..\cocos2dx\platform\third_party\winrt\angle\include;$(ProjectDir)..\..\..\CocosDenshion\include;$(ProjectDir)..\..\..\extensions;$(ProjectDir)..\..\..\extensions\network;$(ProjectDir)..\..\..\cocos2dx\platform\third_party\wp8\;$(ProjectDir)..\..\..\cocos2dx\platform\third_party\wp8\libcurl;$(ProjectDir)..\..\..\external;$(ProjectDir)..\..\..\external\libwebsockets\wp8\include;$(ProjectDir)..\..\..\external\chipmunk\include\chipmunk;$(ProjectDir)..\..\..\cocos2dx\kazmath\include;%(AdditionalIncludeDirectories) true $(IntDir)$(TargetName).pch 4267;4251;4244;4453;%(DisableSpecificWarnings) @@ -230,7 +230,7 @@ {a5ce59f9-2785-4e08-bd3c-0f370eeca439} - {79fc91d4-974c-4bc7-8e8c-79e194437de7} + {b04642cc-e2c3-4388-8eb9-19ba3922060c} {3ad76ea1-d698-40d2-b04d-d9ab8171f40b}