├── .gitignore ├── LICENSE ├── README.md └── planeWar ├── planeWar.xcodeproj └── project.pbxproj ├── planeWar ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Resources │ └── Images │ │ ├── bg.png │ │ ├── enemy1.png │ │ ├── enemy2.png │ │ ├── enemy3.png │ │ ├── plane.png │ │ ├── z1.png │ │ └── z2.png ├── Source │ ├── App │ │ ├── AppDelegate.h │ │ └── AppDelegate.m │ ├── MainScene │ │ ├── MainMenu.xib │ │ ├── MainScene.h │ │ ├── MainScene.m │ │ ├── MainView.h │ │ └── MainView.m │ └── Sprite │ │ ├── BulletSprite.h │ │ ├── BulletSprite.m │ │ ├── EnemySprite.h │ │ ├── EnemySprite.m │ │ ├── PhysicsMasks.h │ │ ├── PlaneSprite.h │ │ ├── PlaneSprite.m │ │ ├── PlayerSprite.h │ │ └── PlayerSprite.m ├── en.lproj │ ├── Credits.rtf │ └── InfoPlist.strings ├── main.m ├── planeWar-Info.plist └── planeWar-Prefix.pch └── planeWarTests ├── en.lproj └── InfoPlist.strings ├── planeWarTests-Info.plist └── planeWarTests.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/PlaneWarOSX/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/PlaneWarOSX/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/PlaneWarOSX/HEAD/README.md -------------------------------------------------------------------------------- /planeWar/planeWar.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/PlaneWarOSX/HEAD/planeWar/planeWar.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /planeWar/planeWar/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/PlaneWarOSX/HEAD/planeWar/planeWar/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /planeWar/planeWar/Resources/Images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/PlaneWarOSX/HEAD/planeWar/planeWar/Resources/Images/bg.png -------------------------------------------------------------------------------- /planeWar/planeWar/Resources/Images/enemy1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/PlaneWarOSX/HEAD/planeWar/planeWar/Resources/Images/enemy1.png -------------------------------------------------------------------------------- /planeWar/planeWar/Resources/Images/enemy2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/PlaneWarOSX/HEAD/planeWar/planeWar/Resources/Images/enemy2.png -------------------------------------------------------------------------------- /planeWar/planeWar/Resources/Images/enemy3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/PlaneWarOSX/HEAD/planeWar/planeWar/Resources/Images/enemy3.png -------------------------------------------------------------------------------- /planeWar/planeWar/Resources/Images/plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/PlaneWarOSX/HEAD/planeWar/planeWar/Resources/Images/plane.png -------------------------------------------------------------------------------- /planeWar/planeWar/Resources/Images/z1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/PlaneWarOSX/HEAD/planeWar/planeWar/Resources/Images/z1.png -------------------------------------------------------------------------------- /planeWar/planeWar/Resources/Images/z2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/PlaneWarOSX/HEAD/planeWar/planeWar/Resources/Images/z2.png -------------------------------------------------------------------------------- /planeWar/planeWar/Source/App/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/PlaneWarOSX/HEAD/planeWar/planeWar/Source/App/AppDelegate.h -------------------------------------------------------------------------------- /planeWar/planeWar/Source/App/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/PlaneWarOSX/HEAD/planeWar/planeWar/Source/App/AppDelegate.m -------------------------------------------------------------------------------- /planeWar/planeWar/Source/MainScene/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/PlaneWarOSX/HEAD/planeWar/planeWar/Source/MainScene/MainMenu.xib -------------------------------------------------------------------------------- /planeWar/planeWar/Source/MainScene/MainScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/PlaneWarOSX/HEAD/planeWar/planeWar/Source/MainScene/MainScene.h -------------------------------------------------------------------------------- /planeWar/planeWar/Source/MainScene/MainScene.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/PlaneWarOSX/HEAD/planeWar/planeWar/Source/MainScene/MainScene.m -------------------------------------------------------------------------------- /planeWar/planeWar/Source/MainScene/MainView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/PlaneWarOSX/HEAD/planeWar/planeWar/Source/MainScene/MainView.h -------------------------------------------------------------------------------- /planeWar/planeWar/Source/MainScene/MainView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/PlaneWarOSX/HEAD/planeWar/planeWar/Source/MainScene/MainView.m -------------------------------------------------------------------------------- /planeWar/planeWar/Source/Sprite/BulletSprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/PlaneWarOSX/HEAD/planeWar/planeWar/Source/Sprite/BulletSprite.h -------------------------------------------------------------------------------- /planeWar/planeWar/Source/Sprite/BulletSprite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/PlaneWarOSX/HEAD/planeWar/planeWar/Source/Sprite/BulletSprite.m -------------------------------------------------------------------------------- /planeWar/planeWar/Source/Sprite/EnemySprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/PlaneWarOSX/HEAD/planeWar/planeWar/Source/Sprite/EnemySprite.h -------------------------------------------------------------------------------- /planeWar/planeWar/Source/Sprite/EnemySprite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/PlaneWarOSX/HEAD/planeWar/planeWar/Source/Sprite/EnemySprite.m -------------------------------------------------------------------------------- /planeWar/planeWar/Source/Sprite/PhysicsMasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/PlaneWarOSX/HEAD/planeWar/planeWar/Source/Sprite/PhysicsMasks.h -------------------------------------------------------------------------------- /planeWar/planeWar/Source/Sprite/PlaneSprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/PlaneWarOSX/HEAD/planeWar/planeWar/Source/Sprite/PlaneSprite.h -------------------------------------------------------------------------------- /planeWar/planeWar/Source/Sprite/PlaneSprite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/PlaneWarOSX/HEAD/planeWar/planeWar/Source/Sprite/PlaneSprite.m -------------------------------------------------------------------------------- /planeWar/planeWar/Source/Sprite/PlayerSprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/PlaneWarOSX/HEAD/planeWar/planeWar/Source/Sprite/PlayerSprite.h -------------------------------------------------------------------------------- /planeWar/planeWar/Source/Sprite/PlayerSprite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/PlaneWarOSX/HEAD/planeWar/planeWar/Source/Sprite/PlayerSprite.m -------------------------------------------------------------------------------- /planeWar/planeWar/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/PlaneWarOSX/HEAD/planeWar/planeWar/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /planeWar/planeWar/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /planeWar/planeWar/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/PlaneWarOSX/HEAD/planeWar/planeWar/main.m -------------------------------------------------------------------------------- /planeWar/planeWar/planeWar-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/PlaneWarOSX/HEAD/planeWar/planeWar/planeWar-Info.plist -------------------------------------------------------------------------------- /planeWar/planeWar/planeWar-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/PlaneWarOSX/HEAD/planeWar/planeWar/planeWar-Prefix.pch -------------------------------------------------------------------------------- /planeWar/planeWarTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /planeWar/planeWarTests/planeWarTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/PlaneWarOSX/HEAD/planeWar/planeWarTests/planeWarTests-Info.plist -------------------------------------------------------------------------------- /planeWar/planeWarTests/planeWarTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/PlaneWarOSX/HEAD/planeWar/planeWarTests/planeWarTests.m --------------------------------------------------------------------------------