├── .DS_Store ├── ZombieCat ├── spark.png ├── GameScene.sks ├── BeakerSmoke.sks ├── GameOverScene.sks ├── iTunesArtwork.png ├── BeakerSparkTrail.sks ├── iTunesArtwork@2x.png ├── Assets.xcassets │ ├── Contents.json │ ├── bg.imageset │ │ ├── bg.png │ │ └── Contents.json │ ├── YouWin.imageset │ │ ├── YouWin.png │ │ └── Contents.json │ ├── beaker.imageset │ │ ├── beaker.png │ │ └── Contents.json │ ├── YouLose.imageset │ │ ├── YouLose.png │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── icon-120.png │ │ ├── icon-121.png │ │ ├── icon-152.png │ │ ├── icon-167.png │ │ ├── icon-180.png │ │ ├── icon-29.png │ │ ├── icon-40.png │ │ ├── icon-58.png │ │ ├── icon-59.png │ │ ├── icon-76.png │ │ ├── icon-80.png │ │ ├── icon-81.png │ │ ├── icon-87.png │ │ └── Contents.json │ ├── cat_awake.imageset │ │ ├── cat_awake.png │ │ └── Contents.json │ ├── cat_sleepy.imageset │ │ ├── cat_sleepy.png │ │ └── Contents.json │ ├── wood_vert1.imageset │ │ ├── wood_vert1.png │ │ └── Contents.json │ ├── zombie_arm.imageset │ │ ├── zombie_arm.png │ │ └── Contents.json │ ├── wood_horiz1.imageset │ │ ├── wood_horiz1.png │ │ └── Contents.json │ ├── zombie_body.imageset │ │ ├── zombie_body.png │ │ └── Contents.json │ ├── arrow-power-meter.imageset │ │ ├── arrow-power-meter.png │ │ └── Contents.json │ ├── regularExplosion00.imageset │ │ ├── regularExplosion00.png │ │ └── Contents.json │ ├── regularExplosion01.imageset │ │ ├── regularExplosion01.png │ │ └── Contents.json │ ├── regularExplosion02.imageset │ │ ├── regularExplosion02.png │ │ └── Contents.json │ ├── regularExplosion03.imageset │ │ ├── regularExplosion03.png │ │ └── Contents.json │ ├── regularExplosion04.imageset │ │ ├── regularExplosion04.png │ │ └── Contents.json │ ├── regularExplosion05.imageset │ │ ├── regularExplosion05.png │ │ └── Contents.json │ ├── regularExplosion06.imageset │ │ ├── regularExplosion06.png │ │ └── Contents.json │ ├── regularExplosion07.imageset │ │ ├── regularExplosion07.png │ │ └── Contents.json │ ├── regularExplosion08.imageset │ │ ├── regularExplosion08.png │ │ └── Contents.json │ └── arrow-power-meter-filled.imageset │ │ ├── arrow-power-meter-filled.png │ │ └── Contents.json ├── Info.plist ├── GameScene.swift ├── Base.lproj │ ├── Main.storyboard │ └── LaunchScreen.storyboard ├── GameOverScene.swift ├── GameViewController.swift └── AppDelegate.swift ├── README.md └── ZombieCat.xcodeproj ├── xcuserdata ├── brian.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ ├── xcschememanagement.plist │ │ └── ZombieCat.xcscheme ├── nilsbernhardt.xcuserdatad │ └── xcschemes │ │ ├── xcschememanagement.plist │ │ └── ZombieCat.xcscheme └── michaelbriscoe.xcuserdatad │ └── xcschemes │ ├── xcschememanagement.plist │ └── ZombieCat.xcscheme ├── project.xcworkspace ├── contents.xcworkspacedata └── xcuserdata │ ├── brian.xcuserdatad │ └── UserInterfaceState.xcuserstate │ ├── michaelbriscoe.xcuserdatad │ └── UserInterfaceState.xcuserstate │ └── nilsbernhardt.xcuserdatad │ └── UserInterfaceState.xcuserstate └── project.pbxproj /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/ZombieCat/master/.DS_Store -------------------------------------------------------------------------------- /ZombieCat/spark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/ZombieCat/master/ZombieCat/spark.png -------------------------------------------------------------------------------- /ZombieCat/GameScene.sks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/ZombieCat/master/ZombieCat/GameScene.sks -------------------------------------------------------------------------------- /ZombieCat/BeakerSmoke.sks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/ZombieCat/master/ZombieCat/BeakerSmoke.sks -------------------------------------------------------------------------------- /ZombieCat/GameOverScene.sks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/ZombieCat/master/ZombieCat/GameOverScene.sks -------------------------------------------------------------------------------- /ZombieCat/iTunesArtwork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/ZombieCat/master/ZombieCat/iTunesArtwork.png -------------------------------------------------------------------------------- /ZombieCat/BeakerSparkTrail.sks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/ZombieCat/master/ZombieCat/BeakerSparkTrail.sks -------------------------------------------------------------------------------- /ZombieCat/iTunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/ZombieCat/master/ZombieCat/iTunesArtwork@2x.png -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/bg.imageset/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/ZombieCat/master/ZombieCat/Assets.xcassets/bg.imageset/bg.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ZombieCat 2 | Tutorial-Project while learning Swift 3 | 4 | https://www.raywenderlich.com/138764/make-a-game-like-monster-island-tutorial 5 | -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/YouWin.imageset/YouWin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/ZombieCat/master/ZombieCat/Assets.xcassets/YouWin.imageset/YouWin.png -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/beaker.imageset/beaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/ZombieCat/master/ZombieCat/Assets.xcassets/beaker.imageset/beaker.png -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/YouLose.imageset/YouLose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/ZombieCat/master/ZombieCat/Assets.xcassets/YouLose.imageset/YouLose.png -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/AppIcon.appiconset/icon-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/ZombieCat/master/ZombieCat/Assets.xcassets/AppIcon.appiconset/icon-120.png -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/AppIcon.appiconset/icon-121.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/ZombieCat/master/ZombieCat/Assets.xcassets/AppIcon.appiconset/icon-121.png -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/AppIcon.appiconset/icon-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/ZombieCat/master/ZombieCat/Assets.xcassets/AppIcon.appiconset/icon-152.png -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/AppIcon.appiconset/icon-167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/ZombieCat/master/ZombieCat/Assets.xcassets/AppIcon.appiconset/icon-167.png -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/AppIcon.appiconset/icon-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/ZombieCat/master/ZombieCat/Assets.xcassets/AppIcon.appiconset/icon-180.png -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/ZombieCat/master/ZombieCat/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/ZombieCat/master/ZombieCat/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/AppIcon.appiconset/icon-58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/ZombieCat/master/ZombieCat/Assets.xcassets/AppIcon.appiconset/icon-58.png -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/AppIcon.appiconset/icon-59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/ZombieCat/master/ZombieCat/Assets.xcassets/AppIcon.appiconset/icon-59.png -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/ZombieCat/master/ZombieCat/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/AppIcon.appiconset/icon-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/ZombieCat/master/ZombieCat/Assets.xcassets/AppIcon.appiconset/icon-80.png -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/AppIcon.appiconset/icon-81.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/ZombieCat/master/ZombieCat/Assets.xcassets/AppIcon.appiconset/icon-81.png -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/AppIcon.appiconset/icon-87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/ZombieCat/master/ZombieCat/Assets.xcassets/AppIcon.appiconset/icon-87.png -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/cat_awake.imageset/cat_awake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/ZombieCat/master/ZombieCat/Assets.xcassets/cat_awake.imageset/cat_awake.png -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/cat_sleepy.imageset/cat_sleepy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/ZombieCat/master/ZombieCat/Assets.xcassets/cat_sleepy.imageset/cat_sleepy.png -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/wood_vert1.imageset/wood_vert1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/ZombieCat/master/ZombieCat/Assets.xcassets/wood_vert1.imageset/wood_vert1.png -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/zombie_arm.imageset/zombie_arm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/ZombieCat/master/ZombieCat/Assets.xcassets/zombie_arm.imageset/zombie_arm.png -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/wood_horiz1.imageset/wood_horiz1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/ZombieCat/master/ZombieCat/Assets.xcassets/wood_horiz1.imageset/wood_horiz1.png -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/zombie_body.imageset/zombie_body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/ZombieCat/master/ZombieCat/Assets.xcassets/zombie_body.imageset/zombie_body.png -------------------------------------------------------------------------------- /ZombieCat.xcodeproj/xcuserdata/brian.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/arrow-power-meter.imageset/arrow-power-meter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/ZombieCat/master/ZombieCat/Assets.xcassets/arrow-power-meter.imageset/arrow-power-meter.png -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/regularExplosion00.imageset/regularExplosion00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/ZombieCat/master/ZombieCat/Assets.xcassets/regularExplosion00.imageset/regularExplosion00.png -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/regularExplosion01.imageset/regularExplosion01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/ZombieCat/master/ZombieCat/Assets.xcassets/regularExplosion01.imageset/regularExplosion01.png -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/regularExplosion02.imageset/regularExplosion02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/ZombieCat/master/ZombieCat/Assets.xcassets/regularExplosion02.imageset/regularExplosion02.png -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/regularExplosion03.imageset/regularExplosion03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/ZombieCat/master/ZombieCat/Assets.xcassets/regularExplosion03.imageset/regularExplosion03.png -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/regularExplosion04.imageset/regularExplosion04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/ZombieCat/master/ZombieCat/Assets.xcassets/regularExplosion04.imageset/regularExplosion04.png -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/regularExplosion05.imageset/regularExplosion05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/ZombieCat/master/ZombieCat/Assets.xcassets/regularExplosion05.imageset/regularExplosion05.png -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/regularExplosion06.imageset/regularExplosion06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/ZombieCat/master/ZombieCat/Assets.xcassets/regularExplosion06.imageset/regularExplosion06.png -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/regularExplosion07.imageset/regularExplosion07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/ZombieCat/master/ZombieCat/Assets.xcassets/regularExplosion07.imageset/regularExplosion07.png -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/regularExplosion08.imageset/regularExplosion08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/ZombieCat/master/ZombieCat/Assets.xcassets/regularExplosion08.imageset/regularExplosion08.png -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/arrow-power-meter-filled.imageset/arrow-power-meter-filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/ZombieCat/master/ZombieCat/Assets.xcassets/arrow-power-meter-filled.imageset/arrow-power-meter-filled.png -------------------------------------------------------------------------------- /ZombieCat.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ZombieCat.xcodeproj/project.xcworkspace/xcuserdata/brian.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/ZombieCat/master/ZombieCat.xcodeproj/project.xcworkspace/xcuserdata/brian.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ZombieCat.xcodeproj/project.xcworkspace/xcuserdata/michaelbriscoe.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/ZombieCat/master/ZombieCat.xcodeproj/project.xcworkspace/xcuserdata/michaelbriscoe.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ZombieCat.xcodeproj/project.xcworkspace/xcuserdata/nilsbernhardt.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombcheck/ZombieCat/master/ZombieCat.xcodeproj/project.xcworkspace/xcuserdata/nilsbernhardt.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/bg.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "bg.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/YouLose.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "YouLose.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/YouWin.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "YouWin.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/beaker.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "beaker.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/cat_awake.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "cat_awake.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/cat_sleepy.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "cat_sleepy.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/wood_vert1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "wood_vert1.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/zombie_arm.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "zombie_arm.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/wood_horiz1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "wood_horiz1.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/zombie_body.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "zombie_body.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/arrow-power-meter.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "arrow-power-meter.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/regularExplosion00.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "regularExplosion00.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/regularExplosion01.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "regularExplosion01.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/regularExplosion02.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "regularExplosion02.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/regularExplosion03.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "regularExplosion03.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/regularExplosion04.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "regularExplosion04.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/regularExplosion05.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "regularExplosion05.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/regularExplosion06.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "regularExplosion06.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/regularExplosion07.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "regularExplosion07.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/regularExplosion08.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "regularExplosion08.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/arrow-power-meter-filled.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "arrow-power-meter-filled.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /ZombieCat.xcodeproj/xcuserdata/brian.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | ZombieCat.xcscheme 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | SuppressBuildableAutocreation 14 | 15 | D30A18281D2C3A0E0063F4E8 16 | 17 | primary 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /ZombieCat.xcodeproj/xcuserdata/nilsbernhardt.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | ZombieCat.xcscheme 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | SuppressBuildableAutocreation 14 | 15 | D30A18281D2C3A0E0063F4E8 16 | 17 | primary 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /ZombieCat.xcodeproj/xcuserdata/michaelbriscoe.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | ZombieCat.xcscheme 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | SuppressBuildableAutocreation 14 | 15 | D30A18281D2C3A0E0063F4E8 16 | 17 | primary 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /ZombieCat/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIMainStoryboardFile 28 | Main 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UIRequiresFullScreen 34 | 35 | UIStatusBarHidden 36 | 37 | UISupportedInterfaceOrientations 38 | 39 | UIInterfaceOrientationLandscapeLeft 40 | UIInterfaceOrientationLandscapeRight 41 | 42 | UISupportedInterfaceOrientations~ipad 43 | 44 | UIInterfaceOrientationLandscapeLeft 45 | UIInterfaceOrientationLandscapeRight 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /ZombieCat/GameScene.swift: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2016 Razeware LLC 3 | * 4 | * Permission is hereby granted, free of charge, to any person obtaining a copy 5 | * of this software and associated documentation files (the "Software"), to deal 6 | * in the Software without restriction, including without limitation the rights 7 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 8 | * copies of the Software, and to permit persons to whom the Software is 9 | * furnished to do so, subject to the following conditions: 10 | * 11 | * The above copyright notice and this permission notice shall be included in 12 | * all copies or substantial portions of the Software. 13 | * 14 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 17 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 18 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 19 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 20 | * THE SOFTWARE. 21 | */ 22 | 23 | import SpriteKit 24 | 25 | struct PhysicsType { 26 | static let none :UInt32 = 0 27 | static let player :UInt32 = 1 28 | static let wall :UInt32 = 2 29 | static let beaker :UInt32 = 4 30 | static let explosionRadius :UInt32 = 8 31 | static let cat :UInt32 = 16 32 | static let zombieCat :UInt32 = 32 33 | } 34 | 35 | class GameScene: SKScene { 36 | 37 | override func didMove(to view: SKView) { 38 | 39 | } 40 | 41 | } 42 | -------------------------------------------------------------------------------- /ZombieCat/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /ZombieCat/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /ZombieCat/GameOverScene.swift: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2016 Razeware LLC 3 | * 4 | * Permission is hereby granted, free of charge, to any person obtaining a copy 5 | * of this software and associated documentation files (the "Software"), to deal 6 | * in the Software without restriction, including without limitation the rights 7 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 8 | * copies of the Software, and to permit persons to whom the Software is 9 | * furnished to do so, subject to the following conditions: 10 | * 11 | * The above copyright notice and this permission notice shall be included in 12 | * all copies or substantial portions of the Software. 13 | * 14 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 17 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 18 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 19 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 20 | * THE SOFTWARE. 21 | */ 22 | 23 | import Foundation 24 | import SpriteKit 25 | 26 | class GameOverScene: SKScene { 27 | var won = false 28 | 29 | override func didMove(to view: SKView) { 30 | if won { 31 | let winNode = SKSpriteNode(imageNamed: "YouWin") 32 | winNode.anchorPoint = CGPoint.zero 33 | addChild(winNode) 34 | } else { 35 | let loseNode = SKSpriteNode(imageNamed: "YouLose") 36 | loseNode.anchorPoint = CGPoint.zero 37 | addChild(loseNode) 38 | } 39 | 40 | let wait = SKAction.wait(forDuration: 2.0) 41 | let block = SKAction.run { 42 | if let myScene = GameScene(fileNamed: "GameScene") { 43 | myScene.scaleMode = self.scaleMode 44 | self.view?.presentScene(myScene) 45 | } 46 | } 47 | run(SKAction.sequence([wait, block])) 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /ZombieCat/GameViewController.swift: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2016 Razeware LLC 3 | * 4 | * Permission is hereby granted, free of charge, to any person obtaining a copy 5 | * of this software and associated documentation files (the "Software"), to deal 6 | * in the Software without restriction, including without limitation the rights 7 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 8 | * copies of the Software, and to permit persons to whom the Software is 9 | * furnished to do so, subject to the following conditions: 10 | * 11 | * The above copyright notice and this permission notice shall be included in 12 | * all copies or substantial portions of the Software. 13 | * 14 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 17 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 18 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 19 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 20 | * THE SOFTWARE. 21 | */ 22 | 23 | import UIKit 24 | import SpriteKit 25 | 26 | class GameViewController: UIViewController { 27 | 28 | override func viewDidLoad() { 29 | super.viewDidLoad() 30 | 31 | if let scene = GameScene(fileNamed:"GameScene") { 32 | // Configure the view. 33 | let skView = self.view as! SKView 34 | skView.showsFPS = false 35 | skView.showsNodeCount = false 36 | 37 | /* Sprite Kit applies additional optimizations to improve rendering performance */ 38 | skView.ignoresSiblingOrder = true 39 | 40 | /* Set the scale mode to scale to fit the window */ 41 | scene.scaleMode = .aspectFill 42 | 43 | skView.presentScene(scene) 44 | } 45 | } 46 | 47 | override func didReceiveMemoryWarning() { 48 | super.didReceiveMemoryWarning() 49 | // Release any cached data, images, etc that aren't in use. 50 | } 51 | 52 | } 53 | -------------------------------------------------------------------------------- /ZombieCat/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "20x20", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "20x20", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "size" : "29x29", 15 | "idiom" : "iphone", 16 | "filename" : "icon-59.png", 17 | "scale" : "2x" 18 | }, 19 | { 20 | "size" : "29x29", 21 | "idiom" : "iphone", 22 | "filename" : "icon-87.png", 23 | "scale" : "3x" 24 | }, 25 | { 26 | "size" : "40x40", 27 | "idiom" : "iphone", 28 | "filename" : "icon-81.png", 29 | "scale" : "2x" 30 | }, 31 | { 32 | "size" : "40x40", 33 | "idiom" : "iphone", 34 | "filename" : "icon-120.png", 35 | "scale" : "3x" 36 | }, 37 | { 38 | "size" : "60x60", 39 | "idiom" : "iphone", 40 | "filename" : "icon-121.png", 41 | "scale" : "2x" 42 | }, 43 | { 44 | "size" : "60x60", 45 | "idiom" : "iphone", 46 | "filename" : "icon-180.png", 47 | "scale" : "3x" 48 | }, 49 | { 50 | "idiom" : "ipad", 51 | "size" : "20x20", 52 | "scale" : "1x" 53 | }, 54 | { 55 | "idiom" : "ipad", 56 | "size" : "20x20", 57 | "scale" : "2x" 58 | }, 59 | { 60 | "size" : "29x29", 61 | "idiom" : "ipad", 62 | "filename" : "icon-29.png", 63 | "scale" : "1x" 64 | }, 65 | { 66 | "size" : "29x29", 67 | "idiom" : "ipad", 68 | "filename" : "icon-58.png", 69 | "scale" : "2x" 70 | }, 71 | { 72 | "size" : "40x40", 73 | "idiom" : "ipad", 74 | "filename" : "icon-40.png", 75 | "scale" : "1x" 76 | }, 77 | { 78 | "size" : "40x40", 79 | "idiom" : "ipad", 80 | "filename" : "icon-80.png", 81 | "scale" : "2x" 82 | }, 83 | { 84 | "size" : "76x76", 85 | "idiom" : "ipad", 86 | "filename" : "icon-76.png", 87 | "scale" : "1x" 88 | }, 89 | { 90 | "size" : "76x76", 91 | "idiom" : "ipad", 92 | "filename" : "icon-152.png", 93 | "scale" : "2x" 94 | }, 95 | { 96 | "size" : "83.5x83.5", 97 | "idiom" : "ipad", 98 | "filename" : "icon-167.png", 99 | "scale" : "2x" 100 | } 101 | ], 102 | "info" : { 103 | "version" : 1, 104 | "author" : "xcode" 105 | } 106 | } -------------------------------------------------------------------------------- /ZombieCat/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2016 Razeware LLC 3 | * 4 | * Permission is hereby granted, free of charge, to any person obtaining a copy 5 | * of this software and associated documentation files (the "Software"), to deal 6 | * in the Software without restriction, including without limitation the rights 7 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 8 | * copies of the Software, and to permit persons to whom the Software is 9 | * furnished to do so, subject to the following conditions: 10 | * 11 | * The above copyright notice and this permission notice shall be included in 12 | * all copies or substantial portions of the Software. 13 | * 14 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 17 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 18 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 19 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 20 | * THE SOFTWARE. 21 | */ 22 | 23 | import UIKit 24 | 25 | @UIApplicationMain 26 | class AppDelegate: UIResponder, UIApplicationDelegate { 27 | 28 | var window: UIWindow? 29 | 30 | func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { 31 | // Override point for customization after application launch. 32 | return true 33 | } 34 | 35 | func applicationWillResignActive(_ application: UIApplication) { 36 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. 37 | // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. 38 | } 39 | 40 | func applicationDidEnterBackground(_ application: UIApplication) { 41 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 42 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 43 | } 44 | 45 | func applicationWillEnterForeground(_ application: UIApplication) { 46 | // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. 47 | } 48 | 49 | func applicationDidBecomeActive(_ application: UIApplication) { 50 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. 51 | } 52 | 53 | func applicationWillTerminate(_ application: UIApplication) { 54 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 55 | } 56 | 57 | 58 | } 59 | 60 | -------------------------------------------------------------------------------- /ZombieCat.xcodeproj/xcuserdata/brian.xcuserdatad/xcschemes/ZombieCat.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 39 | 40 | 41 | 42 | 43 | 44 | 54 | 56 | 62 | 63 | 64 | 65 | 66 | 67 | 73 | 75 | 81 | 82 | 83 | 84 | 86 | 87 | 90 | 91 | 92 | -------------------------------------------------------------------------------- /ZombieCat.xcodeproj/xcuserdata/nilsbernhardt.xcuserdatad/xcschemes/ZombieCat.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 39 | 40 | 41 | 42 | 43 | 44 | 54 | 56 | 62 | 63 | 64 | 65 | 66 | 67 | 73 | 75 | 81 | 82 | 83 | 84 | 86 | 87 | 90 | 91 | 92 | -------------------------------------------------------------------------------- /ZombieCat.xcodeproj/xcuserdata/michaelbriscoe.xcuserdatad/xcschemes/ZombieCat.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 39 | 40 | 41 | 42 | 43 | 44 | 54 | 56 | 62 | 63 | 64 | 65 | 66 | 67 | 73 | 75 | 81 | 82 | 83 | 84 | 86 | 87 | 90 | 91 | 92 | -------------------------------------------------------------------------------- /ZombieCat.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | D30A182D1D2C3A0E0063F4E8 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = D30A182C1D2C3A0E0063F4E8 /* AppDelegate.swift */; }; 11 | D30A18311D2C3A0E0063F4E8 /* GameScene.swift in Sources */ = {isa = PBXBuildFile; fileRef = D30A18301D2C3A0E0063F4E8 /* GameScene.swift */; }; 12 | D30A18331D2C3A0E0063F4E8 /* GameViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = D30A18321D2C3A0E0063F4E8 /* GameViewController.swift */; }; 13 | D30A18361D2C3A0E0063F4E8 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = D30A18341D2C3A0E0063F4E8 /* Main.storyboard */; }; 14 | D30A18381D2C3A0E0063F4E8 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = D30A18371D2C3A0E0063F4E8 /* Assets.xcassets */; }; 15 | D30A183B1D2C3A0E0063F4E8 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = D30A18391D2C3A0E0063F4E8 /* LaunchScreen.storyboard */; }; 16 | D30A18471D2C3A620063F4E8 /* BeakerSparkTrail.sks in Resources */ = {isa = PBXBuildFile; fileRef = D30A18421D2C3A620063F4E8 /* BeakerSparkTrail.sks */; }; 17 | D30A18481D2C3A620063F4E8 /* spark.png in Resources */ = {isa = PBXBuildFile; fileRef = D30A18431D2C3A620063F4E8 /* spark.png */; }; 18 | D30A18491D2C3A620063F4E8 /* BeakerSmoke.sks in Resources */ = {isa = PBXBuildFile; fileRef = D30A18441D2C3A620063F4E8 /* BeakerSmoke.sks */; }; 19 | D30A184A1D2C3A620063F4E8 /* GameOverScene.sks in Resources */ = {isa = PBXBuildFile; fileRef = D30A18451D2C3A620063F4E8 /* GameOverScene.sks */; }; 20 | D30A184B1D2C3A620063F4E8 /* GameOverScene.swift in Sources */ = {isa = PBXBuildFile; fileRef = D30A18461D2C3A620063F4E8 /* GameOverScene.swift */; }; 21 | D30A184D1D2C3ADC0063F4E8 /* GameScene.sks in Resources */ = {isa = PBXBuildFile; fileRef = D30A184C1D2C3ADC0063F4E8 /* GameScene.sks */; }; 22 | D30A60A31D4B08920068692E /* iTunesArtwork.png in Resources */ = {isa = PBXBuildFile; fileRef = D30A60A11D4B08920068692E /* iTunesArtwork.png */; }; 23 | D30A60A41D4B08920068692E /* iTunesArtwork@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = D30A60A21D4B08920068692E /* iTunesArtwork@2x.png */; }; 24 | /* End PBXBuildFile section */ 25 | 26 | /* Begin PBXFileReference section */ 27 | D30A18291D2C3A0E0063F4E8 /* ZombieCat.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ZombieCat.app; sourceTree = BUILT_PRODUCTS_DIR; }; 28 | D30A182C1D2C3A0E0063F4E8 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 29 | D30A18301D2C3A0E0063F4E8 /* GameScene.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GameScene.swift; sourceTree = ""; }; 30 | D30A18321D2C3A0E0063F4E8 /* GameViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GameViewController.swift; sourceTree = ""; }; 31 | D30A18351D2C3A0E0063F4E8 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 32 | D30A18371D2C3A0E0063F4E8 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 33 | D30A183A1D2C3A0E0063F4E8 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 34 | D30A183C1D2C3A0E0063F4E8 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 35 | D30A18421D2C3A620063F4E8 /* BeakerSparkTrail.sks */ = {isa = PBXFileReference; lastKnownFileType = file.sks; path = BeakerSparkTrail.sks; sourceTree = ""; }; 36 | D30A18431D2C3A620063F4E8 /* spark.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = spark.png; sourceTree = ""; }; 37 | D30A18441D2C3A620063F4E8 /* BeakerSmoke.sks */ = {isa = PBXFileReference; lastKnownFileType = file.sks; path = BeakerSmoke.sks; sourceTree = ""; }; 38 | D30A18451D2C3A620063F4E8 /* GameOverScene.sks */ = {isa = PBXFileReference; lastKnownFileType = file.sks; path = GameOverScene.sks; sourceTree = ""; }; 39 | D30A18461D2C3A620063F4E8 /* GameOverScene.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GameOverScene.swift; sourceTree = ""; }; 40 | D30A184C1D2C3ADC0063F4E8 /* GameScene.sks */ = {isa = PBXFileReference; lastKnownFileType = file.sks; path = GameScene.sks; sourceTree = ""; }; 41 | D30A60A11D4B08920068692E /* iTunesArtwork.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = iTunesArtwork.png; sourceTree = ""; }; 42 | D30A60A21D4B08920068692E /* iTunesArtwork@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "iTunesArtwork@2x.png"; sourceTree = ""; }; 43 | /* End PBXFileReference section */ 44 | 45 | /* Begin PBXFrameworksBuildPhase section */ 46 | D30A18261D2C3A0E0063F4E8 /* Frameworks */ = { 47 | isa = PBXFrameworksBuildPhase; 48 | buildActionMask = 2147483647; 49 | files = ( 50 | ); 51 | runOnlyForDeploymentPostprocessing = 0; 52 | }; 53 | /* End PBXFrameworksBuildPhase section */ 54 | 55 | /* Begin PBXGroup section */ 56 | D30A18201D2C3A0E0063F4E8 = { 57 | isa = PBXGroup; 58 | children = ( 59 | D30A182B1D2C3A0E0063F4E8 /* ZombieCat */, 60 | D30A182A1D2C3A0E0063F4E8 /* Products */, 61 | ); 62 | sourceTree = ""; 63 | }; 64 | D30A182A1D2C3A0E0063F4E8 /* Products */ = { 65 | isa = PBXGroup; 66 | children = ( 67 | D30A18291D2C3A0E0063F4E8 /* ZombieCat.app */, 68 | ); 69 | name = Products; 70 | sourceTree = ""; 71 | }; 72 | D30A182B1D2C3A0E0063F4E8 /* ZombieCat */ = { 73 | isa = PBXGroup; 74 | children = ( 75 | D30A182C1D2C3A0E0063F4E8 /* AppDelegate.swift */, 76 | D30A184C1D2C3ADC0063F4E8 /* GameScene.sks */, 77 | D30A18301D2C3A0E0063F4E8 /* GameScene.swift */, 78 | D30A18421D2C3A620063F4E8 /* BeakerSparkTrail.sks */, 79 | D30A18431D2C3A620063F4E8 /* spark.png */, 80 | D30A18441D2C3A620063F4E8 /* BeakerSmoke.sks */, 81 | D30A18451D2C3A620063F4E8 /* GameOverScene.sks */, 82 | D30A18461D2C3A620063F4E8 /* GameOverScene.swift */, 83 | D30A18321D2C3A0E0063F4E8 /* GameViewController.swift */, 84 | D30A18341D2C3A0E0063F4E8 /* Main.storyboard */, 85 | D30A18371D2C3A0E0063F4E8 /* Assets.xcassets */, 86 | D30A60A11D4B08920068692E /* iTunesArtwork.png */, 87 | D30A60A21D4B08920068692E /* iTunesArtwork@2x.png */, 88 | D30A18391D2C3A0E0063F4E8 /* LaunchScreen.storyboard */, 89 | D30A183C1D2C3A0E0063F4E8 /* Info.plist */, 90 | ); 91 | path = ZombieCat; 92 | sourceTree = ""; 93 | }; 94 | /* End PBXGroup section */ 95 | 96 | /* Begin PBXNativeTarget section */ 97 | D30A18281D2C3A0E0063F4E8 /* ZombieCat */ = { 98 | isa = PBXNativeTarget; 99 | buildConfigurationList = D30A183F1D2C3A0E0063F4E8 /* Build configuration list for PBXNativeTarget "ZombieCat" */; 100 | buildPhases = ( 101 | D30A18251D2C3A0E0063F4E8 /* Sources */, 102 | D30A18261D2C3A0E0063F4E8 /* Frameworks */, 103 | D30A18271D2C3A0E0063F4E8 /* Resources */, 104 | ); 105 | buildRules = ( 106 | ); 107 | dependencies = ( 108 | ); 109 | name = ZombieCat; 110 | productName = ZombieCat; 111 | productReference = D30A18291D2C3A0E0063F4E8 /* ZombieCat.app */; 112 | productType = "com.apple.product-type.application"; 113 | }; 114 | /* End PBXNativeTarget section */ 115 | 116 | /* Begin PBXProject section */ 117 | D30A18211D2C3A0E0063F4E8 /* Project object */ = { 118 | isa = PBXProject; 119 | attributes = { 120 | LastSwiftUpdateCheck = 0730; 121 | LastUpgradeCheck = 0800; 122 | ORGANIZATIONNAME = raywenderlich.com; 123 | TargetAttributes = { 124 | D30A18281D2C3A0E0063F4E8 = { 125 | CreatedOnToolsVersion = 7.3.1; 126 | DevelopmentTeam = ZABJ92MWNL; 127 | DevelopmentTeamName = "Brian Broom"; 128 | LastSwiftMigration = 0800; 129 | }; 130 | }; 131 | }; 132 | buildConfigurationList = D30A18241D2C3A0E0063F4E8 /* Build configuration list for PBXProject "ZombieCat" */; 133 | compatibilityVersion = "Xcode 3.2"; 134 | developmentRegion = English; 135 | hasScannedForEncodings = 0; 136 | knownRegions = ( 137 | en, 138 | Base, 139 | ); 140 | mainGroup = D30A18201D2C3A0E0063F4E8; 141 | productRefGroup = D30A182A1D2C3A0E0063F4E8 /* Products */; 142 | projectDirPath = ""; 143 | projectRoot = ""; 144 | targets = ( 145 | D30A18281D2C3A0E0063F4E8 /* ZombieCat */, 146 | ); 147 | }; 148 | /* End PBXProject section */ 149 | 150 | /* Begin PBXResourcesBuildPhase section */ 151 | D30A18271D2C3A0E0063F4E8 /* Resources */ = { 152 | isa = PBXResourcesBuildPhase; 153 | buildActionMask = 2147483647; 154 | files = ( 155 | D30A18491D2C3A620063F4E8 /* BeakerSmoke.sks in Resources */, 156 | D30A60A41D4B08920068692E /* iTunesArtwork@2x.png in Resources */, 157 | D30A18481D2C3A620063F4E8 /* spark.png in Resources */, 158 | D30A18471D2C3A620063F4E8 /* BeakerSparkTrail.sks in Resources */, 159 | D30A184A1D2C3A620063F4E8 /* GameOverScene.sks in Resources */, 160 | D30A184D1D2C3ADC0063F4E8 /* GameScene.sks in Resources */, 161 | D30A183B1D2C3A0E0063F4E8 /* LaunchScreen.storyboard in Resources */, 162 | D30A60A31D4B08920068692E /* iTunesArtwork.png in Resources */, 163 | D30A18381D2C3A0E0063F4E8 /* Assets.xcassets in Resources */, 164 | D30A18361D2C3A0E0063F4E8 /* Main.storyboard in Resources */, 165 | ); 166 | runOnlyForDeploymentPostprocessing = 0; 167 | }; 168 | /* End PBXResourcesBuildPhase section */ 169 | 170 | /* Begin PBXSourcesBuildPhase section */ 171 | D30A18251D2C3A0E0063F4E8 /* Sources */ = { 172 | isa = PBXSourcesBuildPhase; 173 | buildActionMask = 2147483647; 174 | files = ( 175 | D30A18311D2C3A0E0063F4E8 /* GameScene.swift in Sources */, 176 | D30A18331D2C3A0E0063F4E8 /* GameViewController.swift in Sources */, 177 | D30A184B1D2C3A620063F4E8 /* GameOverScene.swift in Sources */, 178 | D30A182D1D2C3A0E0063F4E8 /* AppDelegate.swift in Sources */, 179 | ); 180 | runOnlyForDeploymentPostprocessing = 0; 181 | }; 182 | /* End PBXSourcesBuildPhase section */ 183 | 184 | /* Begin PBXVariantGroup section */ 185 | D30A18341D2C3A0E0063F4E8 /* Main.storyboard */ = { 186 | isa = PBXVariantGroup; 187 | children = ( 188 | D30A18351D2C3A0E0063F4E8 /* Base */, 189 | ); 190 | name = Main.storyboard; 191 | sourceTree = ""; 192 | }; 193 | D30A18391D2C3A0E0063F4E8 /* LaunchScreen.storyboard */ = { 194 | isa = PBXVariantGroup; 195 | children = ( 196 | D30A183A1D2C3A0E0063F4E8 /* Base */, 197 | ); 198 | name = LaunchScreen.storyboard; 199 | sourceTree = ""; 200 | }; 201 | /* End PBXVariantGroup section */ 202 | 203 | /* Begin XCBuildConfiguration section */ 204 | D30A183D1D2C3A0E0063F4E8 /* Debug */ = { 205 | isa = XCBuildConfiguration; 206 | buildSettings = { 207 | ALWAYS_SEARCH_USER_PATHS = NO; 208 | CLANG_ANALYZER_NONNULL = YES; 209 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 210 | CLANG_CXX_LIBRARY = "libc++"; 211 | CLANG_ENABLE_MODULES = YES; 212 | CLANG_ENABLE_OBJC_ARC = YES; 213 | CLANG_WARN_BOOL_CONVERSION = YES; 214 | CLANG_WARN_CONSTANT_CONVERSION = YES; 215 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 216 | CLANG_WARN_EMPTY_BODY = YES; 217 | CLANG_WARN_ENUM_CONVERSION = YES; 218 | CLANG_WARN_INT_CONVERSION = YES; 219 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 220 | CLANG_WARN_UNREACHABLE_CODE = YES; 221 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 222 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 223 | COPY_PHASE_STRIP = NO; 224 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 225 | ENABLE_STRICT_OBJC_MSGSEND = YES; 226 | ENABLE_TESTABILITY = YES; 227 | GCC_C_LANGUAGE_STANDARD = gnu99; 228 | GCC_DYNAMIC_NO_PIC = NO; 229 | GCC_NO_COMMON_BLOCKS = YES; 230 | GCC_OPTIMIZATION_LEVEL = 0; 231 | GCC_PREPROCESSOR_DEFINITIONS = ( 232 | "DEBUG=1", 233 | "$(inherited)", 234 | ); 235 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 236 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 237 | GCC_WARN_UNDECLARED_SELECTOR = YES; 238 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 239 | GCC_WARN_UNUSED_FUNCTION = YES; 240 | GCC_WARN_UNUSED_VARIABLE = YES; 241 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 242 | MTL_ENABLE_DEBUG_INFO = YES; 243 | ONLY_ACTIVE_ARCH = YES; 244 | SDKROOT = iphoneos; 245 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 246 | TARGETED_DEVICE_FAMILY = "1,2"; 247 | }; 248 | name = Debug; 249 | }; 250 | D30A183E1D2C3A0E0063F4E8 /* Release */ = { 251 | isa = XCBuildConfiguration; 252 | buildSettings = { 253 | ALWAYS_SEARCH_USER_PATHS = NO; 254 | CLANG_ANALYZER_NONNULL = YES; 255 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 256 | CLANG_CXX_LIBRARY = "libc++"; 257 | CLANG_ENABLE_MODULES = YES; 258 | CLANG_ENABLE_OBJC_ARC = YES; 259 | CLANG_WARN_BOOL_CONVERSION = YES; 260 | CLANG_WARN_CONSTANT_CONVERSION = YES; 261 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 262 | CLANG_WARN_EMPTY_BODY = YES; 263 | CLANG_WARN_ENUM_CONVERSION = YES; 264 | CLANG_WARN_INT_CONVERSION = YES; 265 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 266 | CLANG_WARN_UNREACHABLE_CODE = YES; 267 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 268 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 269 | COPY_PHASE_STRIP = NO; 270 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 271 | ENABLE_NS_ASSERTIONS = NO; 272 | ENABLE_STRICT_OBJC_MSGSEND = YES; 273 | GCC_C_LANGUAGE_STANDARD = gnu99; 274 | GCC_NO_COMMON_BLOCKS = YES; 275 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 276 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 277 | GCC_WARN_UNDECLARED_SELECTOR = YES; 278 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 279 | GCC_WARN_UNUSED_FUNCTION = YES; 280 | GCC_WARN_UNUSED_VARIABLE = YES; 281 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 282 | MTL_ENABLE_DEBUG_INFO = NO; 283 | SDKROOT = iphoneos; 284 | TARGETED_DEVICE_FAMILY = "1,2"; 285 | VALIDATE_PRODUCT = YES; 286 | }; 287 | name = Release; 288 | }; 289 | D30A18401D2C3A0E0063F4E8 /* Debug */ = { 290 | isa = XCBuildConfiguration; 291 | buildSettings = { 292 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 293 | DEVELOPMENT_TEAM = ZABJ92MWNL; 294 | INFOPLIST_FILE = ZombieCat/Info.plist; 295 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 296 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 297 | PRODUCT_BUNDLE_IDENTIFIER = com.example.ZombieCat; 298 | PRODUCT_NAME = "$(TARGET_NAME)"; 299 | SWIFT_VERSION = 3.0; 300 | }; 301 | name = Debug; 302 | }; 303 | D30A18411D2C3A0E0063F4E8 /* Release */ = { 304 | isa = XCBuildConfiguration; 305 | buildSettings = { 306 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 307 | DEVELOPMENT_TEAM = ZABJ92MWNL; 308 | INFOPLIST_FILE = ZombieCat/Info.plist; 309 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 310 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 311 | PRODUCT_BUNDLE_IDENTIFIER = com.example.ZombieCat; 312 | PRODUCT_NAME = "$(TARGET_NAME)"; 313 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 314 | SWIFT_VERSION = 3.0; 315 | }; 316 | name = Release; 317 | }; 318 | /* End XCBuildConfiguration section */ 319 | 320 | /* Begin XCConfigurationList section */ 321 | D30A18241D2C3A0E0063F4E8 /* Build configuration list for PBXProject "ZombieCat" */ = { 322 | isa = XCConfigurationList; 323 | buildConfigurations = ( 324 | D30A183D1D2C3A0E0063F4E8 /* Debug */, 325 | D30A183E1D2C3A0E0063F4E8 /* Release */, 326 | ); 327 | defaultConfigurationIsVisible = 0; 328 | defaultConfigurationName = Release; 329 | }; 330 | D30A183F1D2C3A0E0063F4E8 /* Build configuration list for PBXNativeTarget "ZombieCat" */ = { 331 | isa = XCConfigurationList; 332 | buildConfigurations = ( 333 | D30A18401D2C3A0E0063F4E8 /* Debug */, 334 | D30A18411D2C3A0E0063F4E8 /* Release */, 335 | ); 336 | defaultConfigurationIsVisible = 0; 337 | defaultConfigurationName = Release; 338 | }; 339 | /* End XCConfigurationList section */ 340 | }; 341 | rootObject = D30A18211D2C3A0E0063F4E8 /* Project object */; 342 | } 343 | --------------------------------------------------------------------------------