├── .DS_Store ├── .gitignore ├── App ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── AppIcon-1024.png │ │ ├── AppIcon-120.png │ │ ├── AppIcon-180.png │ │ └── Contents.json │ ├── Contents.json │ └── Sprites.spriteatlas │ │ ├── Asteroid.imageset │ │ ├── Asteroid@2x.png │ │ └── Contents.json │ │ ├── BilliardBackground.imageset │ │ ├── BilliardBackground.jpg │ │ └── Contents.json │ │ ├── Bubble-0.imageset │ │ ├── Bubble-0@2x.png │ │ └── Contents.json │ │ ├── Bubble-1.imageset │ │ ├── Bubble-1@2x.png │ │ └── Contents.json │ │ ├── Bubble-2.imageset │ │ ├── Bubble-2@2x.png │ │ └── Contents.json │ │ ├── Bubble-3.imageset │ │ ├── Bubble-3@2x.png │ │ └── Contents.json │ │ ├── Bubble-4.imageset │ │ ├── Bubble-4@2x.png │ │ └── Contents.json │ │ ├── Car-Side.imageset │ │ ├── Car-Side@2x.png │ │ └── Contents.json │ │ ├── Car-Top.imageset │ │ ├── Car-Top@2x.png │ │ └── Contents.json │ │ ├── Character-Back-0.imageset │ │ ├── Character-Back-0@2x.png │ │ └── Contents.json │ │ ├── Character-Back-1.imageset │ │ ├── Character-Back-1@2x.png │ │ └── Contents.json │ │ ├── Character-Back-2.imageset │ │ ├── Character-Back-2@2x.png │ │ └── Contents.json │ │ ├── Character-Front-0.imageset │ │ ├── Character-Front-0@2x.png │ │ └── Contents.json │ │ ├── Character-Front-1.imageset │ │ ├── Character-Front-1@2x.png │ │ └── Contents.json │ │ ├── Character-Front-2.imageset │ │ ├── Character-Front-2@2x.png │ │ └── Contents.json │ │ ├── Character-Left-0.imageset │ │ ├── Character-Left-0@2x.png │ │ └── Contents.json │ │ ├── Character-Left-1.imageset │ │ ├── Character-Left-1@2x.png │ │ └── Contents.json │ │ ├── Character-Left-2.imageset │ │ ├── Character-Left-2@2x.png │ │ └── Contents.json │ │ ├── Character-Right-0.imageset │ │ ├── Character-Right-0@2x.png │ │ └── Contents.json │ │ ├── Character-Right-1.imageset │ │ ├── Character-Right-1@2x.png │ │ └── Contents.json │ │ ├── Character-Right-2.imageset │ │ ├── Character-Right-2@2x.png │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Crate-Blue.imageset │ │ ├── Contents.json │ │ └── Crate-Blue@2x.png │ │ ├── Crate-Brown.imageset │ │ ├── Contents.json │ │ └── Crate-Brown@2x.png │ │ ├── Crate-Gray.imageset │ │ ├── Contents.json │ │ └── Crate-Gray@2x.png │ │ ├── Crate-Green.imageset │ │ ├── Contents.json │ │ └── Crate-Green@2x.png │ │ ├── Explosion-0.imageset │ │ ├── Contents.json │ │ └── Explosion-0@2x.png │ │ ├── Explosion-1.imageset │ │ ├── Contents.json │ │ └── Explosion-1@2x.png │ │ ├── Explosion-2.imageset │ │ ├── Contents.json │ │ └── Explosion-2@2x.png │ │ ├── Explosion-3.imageset │ │ ├── Contents.json │ │ └── Explosion-3@2x.png │ │ ├── Explosion-4.imageset │ │ ├── Contents.json │ │ └── Explosion-4@2x.png │ │ ├── Explosion-5.imageset │ │ ├── Contents.json │ │ └── Explosion-5@2x.png │ │ ├── Explosion-6.imageset │ │ ├── Contents.json │ │ └── Explosion-6@2x.png │ │ ├── House.imageset │ │ ├── Contents.json │ │ └── House@2x.png │ │ ├── Laser.imageset │ │ ├── Contents.json │ │ └── Screen Shot 2017-11-23 at 12.13.21.png │ │ ├── Platform-Bottom.imageset │ │ ├── Contents.json │ │ └── Platform-Bottom@2x.png │ │ ├── Platform-Center.imageset │ │ ├── Contents.json │ │ └── Platform-Center@2x.png │ │ ├── Platform-Left.imageset │ │ ├── Contents.json │ │ └── Platform-Left@2x.png │ │ ├── Platform-Right.imageset │ │ ├── Contents.json │ │ └── Platform-Right@2x.png │ │ ├── Platform-Single.imageset │ │ ├── Contents.json │ │ └── Platform-Single@2x.png │ │ ├── Rocket.imageset │ │ ├── Contents.json │ │ └── Rocket@2x.png │ │ └── SoccerBall.imageset │ │ ├── Contents.json │ │ └── SoccerBall@2x.png ├── Base.lproj │ └── LaunchScreen.storyboard ├── GameListViewController.swift ├── GameViewController.swift └── Info.plist ├── Games ├── Asteroids │ ├── AsteroidsGame.swift │ └── AsteroidsScene.swift ├── BubbleProtect │ ├── BubbleProtectGame.swift │ └── BubbleProtectScene.swift ├── BubbleRocket │ ├── BubbleRocketGame.swift │ └── BubbleRocketScene.swift ├── CakeKiller │ ├── CakeKillerGame.swift │ └── CakeKillerScene.swift ├── Car │ ├── CarGame.swift │ └── CarScene.swift ├── DeathStar │ ├── DeathStarGame.swift │ └── DeathStarScene.swift ├── Demo │ ├── DemoGame.swift │ └── DemoScene.swift ├── Drinking │ ├── DrinkingGame.swift │ └── DrinkingGameScene.swift ├── FireFighter │ ├── FireFighterGame.swift │ └── FireFighterScene.swift ├── GravityCollider │ ├── GravityColliderGame.swift │ └── GravityColliderScene.swift ├── JumpHigh │ ├── JumpHighGame.swift │ └── JumpHighScene.swift ├── MoonLander │ ├── MoonLanderGame.swift │ └── MoonLanderScene.swift ├── Rocket │ ├── RocketGame.swift │ └── RocketScene.swift ├── SaveThePoo │ ├── PooSceene.swift │ └── SaveThePooGame.swift ├── SmileyBilliard │ ├── SmileyBilliardGame.swift │ └── SmileyBilliardScene.swift ├── Soccer │ ├── SoccerGame.swift │ └── SoccerScene.swift ├── VolcanoCannon │ ├── VolcanoCannonGame.swift │ └── VolcanoCannonScene.swift └── WildWildWest │ ├── WildWildWestGame.swift │ └── WildWildWestScene.swift ├── LICENSE ├── Library ├── Array+Random.swift ├── Game.swift ├── SKNode+UserData.swift └── SKScene+Extensions.swift ├── Logo.png ├── README.md ├── SpriteKitPlayground.playground ├── Contents.swift ├── Resources │ ├── Asteroid@2x.png │ ├── Bubble@2x.png │ ├── Car@2x.png │ ├── Character@2x.png │ ├── Crate-Brown@2x.png │ ├── Explosion-0@2x.png │ ├── Explosion-1@2x.png │ ├── Explosion-2@2x.png │ ├── Explosion-3@2x.png │ ├── Explosion-4@2x.png │ ├── Explosion-5@2x.png │ ├── Explosion-6@2x.png │ ├── House@2x.png │ ├── Platform-Single@2x.png │ ├── Rocket@2x.png │ └── SoccerBall@2x.png └── contents.xcplayground └── Swift Alps Game Jam.xcodeproj ├── project.pbxproj ├── project.xcworkspace └── contents.xcworkspacedata └── xcshareddata └── xcschemes └── Swift Alps Game Jam.xcscheme /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/.gitignore -------------------------------------------------------------------------------- /App/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/AppDelegate.swift -------------------------------------------------------------------------------- /App/Assets.xcassets/AppIcon.appiconset/AppIcon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/AppIcon.appiconset/AppIcon-1024.png -------------------------------------------------------------------------------- /App/Assets.xcassets/AppIcon.appiconset/AppIcon-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/AppIcon.appiconset/AppIcon-120.png -------------------------------------------------------------------------------- /App/Assets.xcassets/AppIcon.appiconset/AppIcon-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/AppIcon.appiconset/AppIcon-180.png -------------------------------------------------------------------------------- /App/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /App/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Asteroid.imageset/Asteroid@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Asteroid.imageset/Asteroid@2x.png -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Asteroid.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Asteroid.imageset/Contents.json -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/BilliardBackground.imageset/BilliardBackground.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/BilliardBackground.imageset/BilliardBackground.jpg -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/BilliardBackground.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/BilliardBackground.imageset/Contents.json -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Bubble-0.imageset/Bubble-0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Bubble-0.imageset/Bubble-0@2x.png -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Bubble-0.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Bubble-0.imageset/Contents.json -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Bubble-1.imageset/Bubble-1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Bubble-1.imageset/Bubble-1@2x.png -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Bubble-1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Bubble-1.imageset/Contents.json -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Bubble-2.imageset/Bubble-2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Bubble-2.imageset/Bubble-2@2x.png -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Bubble-2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Bubble-2.imageset/Contents.json -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Bubble-3.imageset/Bubble-3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Bubble-3.imageset/Bubble-3@2x.png -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Bubble-3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Bubble-3.imageset/Contents.json -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Bubble-4.imageset/Bubble-4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Bubble-4.imageset/Bubble-4@2x.png -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Bubble-4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Bubble-4.imageset/Contents.json -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Car-Side.imageset/Car-Side@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Car-Side.imageset/Car-Side@2x.png -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Car-Side.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Car-Side.imageset/Contents.json -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Car-Top.imageset/Car-Top@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Car-Top.imageset/Car-Top@2x.png -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Car-Top.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Car-Top.imageset/Contents.json -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Character-Back-0.imageset/Character-Back-0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Character-Back-0.imageset/Character-Back-0@2x.png -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Character-Back-0.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Character-Back-0.imageset/Contents.json -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Character-Back-1.imageset/Character-Back-1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Character-Back-1.imageset/Character-Back-1@2x.png -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Character-Back-1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Character-Back-1.imageset/Contents.json -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Character-Back-2.imageset/Character-Back-2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Character-Back-2.imageset/Character-Back-2@2x.png -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Character-Back-2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Character-Back-2.imageset/Contents.json -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Character-Front-0.imageset/Character-Front-0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Character-Front-0.imageset/Character-Front-0@2x.png -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Character-Front-0.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Character-Front-0.imageset/Contents.json -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Character-Front-1.imageset/Character-Front-1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Character-Front-1.imageset/Character-Front-1@2x.png -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Character-Front-1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Character-Front-1.imageset/Contents.json -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Character-Front-2.imageset/Character-Front-2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Character-Front-2.imageset/Character-Front-2@2x.png -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Character-Front-2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Character-Front-2.imageset/Contents.json -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Character-Left-0.imageset/Character-Left-0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Character-Left-0.imageset/Character-Left-0@2x.png -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Character-Left-0.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Character-Left-0.imageset/Contents.json -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Character-Left-1.imageset/Character-Left-1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Character-Left-1.imageset/Character-Left-1@2x.png -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Character-Left-1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Character-Left-1.imageset/Contents.json -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Character-Left-2.imageset/Character-Left-2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Character-Left-2.imageset/Character-Left-2@2x.png -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Character-Left-2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Character-Left-2.imageset/Contents.json -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Character-Right-0.imageset/Character-Right-0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Character-Right-0.imageset/Character-Right-0@2x.png -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Character-Right-0.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Character-Right-0.imageset/Contents.json -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Character-Right-1.imageset/Character-Right-1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Character-Right-1.imageset/Character-Right-1@2x.png -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Character-Right-1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Character-Right-1.imageset/Contents.json -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Character-Right-2.imageset/Character-Right-2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Character-Right-2.imageset/Character-Right-2@2x.png -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Character-Right-2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Character-Right-2.imageset/Contents.json -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Contents.json -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Crate-Blue.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Crate-Blue.imageset/Contents.json -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Crate-Blue.imageset/Crate-Blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Crate-Blue.imageset/Crate-Blue@2x.png -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Crate-Brown.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Crate-Brown.imageset/Contents.json -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Crate-Brown.imageset/Crate-Brown@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Crate-Brown.imageset/Crate-Brown@2x.png -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Crate-Gray.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Crate-Gray.imageset/Contents.json -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Crate-Gray.imageset/Crate-Gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Crate-Gray.imageset/Crate-Gray@2x.png -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Crate-Green.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Crate-Green.imageset/Contents.json -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Crate-Green.imageset/Crate-Green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Crate-Green.imageset/Crate-Green@2x.png -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Explosion-0.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Explosion-0.imageset/Contents.json -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Explosion-0.imageset/Explosion-0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Explosion-0.imageset/Explosion-0@2x.png -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Explosion-1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Explosion-1.imageset/Contents.json -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Explosion-1.imageset/Explosion-1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Explosion-1.imageset/Explosion-1@2x.png -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Explosion-2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Explosion-2.imageset/Contents.json -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Explosion-2.imageset/Explosion-2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Explosion-2.imageset/Explosion-2@2x.png -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Explosion-3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Explosion-3.imageset/Contents.json -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Explosion-3.imageset/Explosion-3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Explosion-3.imageset/Explosion-3@2x.png -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Explosion-4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Explosion-4.imageset/Contents.json -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Explosion-4.imageset/Explosion-4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Explosion-4.imageset/Explosion-4@2x.png -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Explosion-5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Explosion-5.imageset/Contents.json -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Explosion-5.imageset/Explosion-5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Explosion-5.imageset/Explosion-5@2x.png -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Explosion-6.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Explosion-6.imageset/Contents.json -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Explosion-6.imageset/Explosion-6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Explosion-6.imageset/Explosion-6@2x.png -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/House.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/House.imageset/Contents.json -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/House.imageset/House@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/House.imageset/House@2x.png -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Laser.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Laser.imageset/Contents.json -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Laser.imageset/Screen Shot 2017-11-23 at 12.13.21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Laser.imageset/Screen Shot 2017-11-23 at 12.13.21.png -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Platform-Bottom.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Platform-Bottom.imageset/Contents.json -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Platform-Bottom.imageset/Platform-Bottom@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Platform-Bottom.imageset/Platform-Bottom@2x.png -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Platform-Center.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Platform-Center.imageset/Contents.json -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Platform-Center.imageset/Platform-Center@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Platform-Center.imageset/Platform-Center@2x.png -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Platform-Left.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Platform-Left.imageset/Contents.json -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Platform-Left.imageset/Platform-Left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Platform-Left.imageset/Platform-Left@2x.png -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Platform-Right.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Platform-Right.imageset/Contents.json -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Platform-Right.imageset/Platform-Right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Platform-Right.imageset/Platform-Right@2x.png -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Platform-Single.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Platform-Single.imageset/Contents.json -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Platform-Single.imageset/Platform-Single@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Platform-Single.imageset/Platform-Single@2x.png -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Rocket.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Rocket.imageset/Contents.json -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/Rocket.imageset/Rocket@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/Rocket.imageset/Rocket@2x.png -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/SoccerBall.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/SoccerBall.imageset/Contents.json -------------------------------------------------------------------------------- /App/Assets.xcassets/Sprites.spriteatlas/SoccerBall.imageset/SoccerBall@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Assets.xcassets/Sprites.spriteatlas/SoccerBall.imageset/SoccerBall@2x.png -------------------------------------------------------------------------------- /App/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /App/GameListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/GameListViewController.swift -------------------------------------------------------------------------------- /App/GameViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/GameViewController.swift -------------------------------------------------------------------------------- /App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/App/Info.plist -------------------------------------------------------------------------------- /Games/Asteroids/AsteroidsGame.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/Games/Asteroids/AsteroidsGame.swift -------------------------------------------------------------------------------- /Games/Asteroids/AsteroidsScene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/Games/Asteroids/AsteroidsScene.swift -------------------------------------------------------------------------------- /Games/BubbleProtect/BubbleProtectGame.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/Games/BubbleProtect/BubbleProtectGame.swift -------------------------------------------------------------------------------- /Games/BubbleProtect/BubbleProtectScene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/Games/BubbleProtect/BubbleProtectScene.swift -------------------------------------------------------------------------------- /Games/BubbleRocket/BubbleRocketGame.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/Games/BubbleRocket/BubbleRocketGame.swift -------------------------------------------------------------------------------- /Games/BubbleRocket/BubbleRocketScene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/Games/BubbleRocket/BubbleRocketScene.swift -------------------------------------------------------------------------------- /Games/CakeKiller/CakeKillerGame.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/Games/CakeKiller/CakeKillerGame.swift -------------------------------------------------------------------------------- /Games/CakeKiller/CakeKillerScene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/Games/CakeKiller/CakeKillerScene.swift -------------------------------------------------------------------------------- /Games/Car/CarGame.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/Games/Car/CarGame.swift -------------------------------------------------------------------------------- /Games/Car/CarScene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/Games/Car/CarScene.swift -------------------------------------------------------------------------------- /Games/DeathStar/DeathStarGame.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/Games/DeathStar/DeathStarGame.swift -------------------------------------------------------------------------------- /Games/DeathStar/DeathStarScene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/Games/DeathStar/DeathStarScene.swift -------------------------------------------------------------------------------- /Games/Demo/DemoGame.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/Games/Demo/DemoGame.swift -------------------------------------------------------------------------------- /Games/Demo/DemoScene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/Games/Demo/DemoScene.swift -------------------------------------------------------------------------------- /Games/Drinking/DrinkingGame.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/Games/Drinking/DrinkingGame.swift -------------------------------------------------------------------------------- /Games/Drinking/DrinkingGameScene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/Games/Drinking/DrinkingGameScene.swift -------------------------------------------------------------------------------- /Games/FireFighter/FireFighterGame.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/Games/FireFighter/FireFighterGame.swift -------------------------------------------------------------------------------- /Games/FireFighter/FireFighterScene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/Games/FireFighter/FireFighterScene.swift -------------------------------------------------------------------------------- /Games/GravityCollider/GravityColliderGame.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/Games/GravityCollider/GravityColliderGame.swift -------------------------------------------------------------------------------- /Games/GravityCollider/GravityColliderScene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/Games/GravityCollider/GravityColliderScene.swift -------------------------------------------------------------------------------- /Games/JumpHigh/JumpHighGame.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/Games/JumpHigh/JumpHighGame.swift -------------------------------------------------------------------------------- /Games/JumpHigh/JumpHighScene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/Games/JumpHigh/JumpHighScene.swift -------------------------------------------------------------------------------- /Games/MoonLander/MoonLanderGame.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/Games/MoonLander/MoonLanderGame.swift -------------------------------------------------------------------------------- /Games/MoonLander/MoonLanderScene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/Games/MoonLander/MoonLanderScene.swift -------------------------------------------------------------------------------- /Games/Rocket/RocketGame.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/Games/Rocket/RocketGame.swift -------------------------------------------------------------------------------- /Games/Rocket/RocketScene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/Games/Rocket/RocketScene.swift -------------------------------------------------------------------------------- /Games/SaveThePoo/PooSceene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/Games/SaveThePoo/PooSceene.swift -------------------------------------------------------------------------------- /Games/SaveThePoo/SaveThePooGame.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/Games/SaveThePoo/SaveThePooGame.swift -------------------------------------------------------------------------------- /Games/SmileyBilliard/SmileyBilliardGame.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/Games/SmileyBilliard/SmileyBilliardGame.swift -------------------------------------------------------------------------------- /Games/SmileyBilliard/SmileyBilliardScene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/Games/SmileyBilliard/SmileyBilliardScene.swift -------------------------------------------------------------------------------- /Games/Soccer/SoccerGame.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/Games/Soccer/SoccerGame.swift -------------------------------------------------------------------------------- /Games/Soccer/SoccerScene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/Games/Soccer/SoccerScene.swift -------------------------------------------------------------------------------- /Games/VolcanoCannon/VolcanoCannonGame.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/Games/VolcanoCannon/VolcanoCannonGame.swift -------------------------------------------------------------------------------- /Games/VolcanoCannon/VolcanoCannonScene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/Games/VolcanoCannon/VolcanoCannonScene.swift -------------------------------------------------------------------------------- /Games/WildWildWest/WildWildWestGame.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/Games/WildWildWest/WildWildWestGame.swift -------------------------------------------------------------------------------- /Games/WildWildWest/WildWildWestScene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/Games/WildWildWest/WildWildWestScene.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/LICENSE -------------------------------------------------------------------------------- /Library/Array+Random.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/Library/Array+Random.swift -------------------------------------------------------------------------------- /Library/Game.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/Library/Game.swift -------------------------------------------------------------------------------- /Library/SKNode+UserData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/Library/SKNode+UserData.swift -------------------------------------------------------------------------------- /Library/SKScene+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/Library/SKScene+Extensions.swift -------------------------------------------------------------------------------- /Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/Logo.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/README.md -------------------------------------------------------------------------------- /SpriteKitPlayground.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/SpriteKitPlayground.playground/Contents.swift -------------------------------------------------------------------------------- /SpriteKitPlayground.playground/Resources/Asteroid@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/SpriteKitPlayground.playground/Resources/Asteroid@2x.png -------------------------------------------------------------------------------- /SpriteKitPlayground.playground/Resources/Bubble@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/SpriteKitPlayground.playground/Resources/Bubble@2x.png -------------------------------------------------------------------------------- /SpriteKitPlayground.playground/Resources/Car@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/SpriteKitPlayground.playground/Resources/Car@2x.png -------------------------------------------------------------------------------- /SpriteKitPlayground.playground/Resources/Character@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/SpriteKitPlayground.playground/Resources/Character@2x.png -------------------------------------------------------------------------------- /SpriteKitPlayground.playground/Resources/Crate-Brown@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/SpriteKitPlayground.playground/Resources/Crate-Brown@2x.png -------------------------------------------------------------------------------- /SpriteKitPlayground.playground/Resources/Explosion-0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/SpriteKitPlayground.playground/Resources/Explosion-0@2x.png -------------------------------------------------------------------------------- /SpriteKitPlayground.playground/Resources/Explosion-1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/SpriteKitPlayground.playground/Resources/Explosion-1@2x.png -------------------------------------------------------------------------------- /SpriteKitPlayground.playground/Resources/Explosion-2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/SpriteKitPlayground.playground/Resources/Explosion-2@2x.png -------------------------------------------------------------------------------- /SpriteKitPlayground.playground/Resources/Explosion-3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/SpriteKitPlayground.playground/Resources/Explosion-3@2x.png -------------------------------------------------------------------------------- /SpriteKitPlayground.playground/Resources/Explosion-4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/SpriteKitPlayground.playground/Resources/Explosion-4@2x.png -------------------------------------------------------------------------------- /SpriteKitPlayground.playground/Resources/Explosion-5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/SpriteKitPlayground.playground/Resources/Explosion-5@2x.png -------------------------------------------------------------------------------- /SpriteKitPlayground.playground/Resources/Explosion-6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/SpriteKitPlayground.playground/Resources/Explosion-6@2x.png -------------------------------------------------------------------------------- /SpriteKitPlayground.playground/Resources/House@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/SpriteKitPlayground.playground/Resources/House@2x.png -------------------------------------------------------------------------------- /SpriteKitPlayground.playground/Resources/Platform-Single@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/SpriteKitPlayground.playground/Resources/Platform-Single@2x.png -------------------------------------------------------------------------------- /SpriteKitPlayground.playground/Resources/Rocket@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/SpriteKitPlayground.playground/Resources/Rocket@2x.png -------------------------------------------------------------------------------- /SpriteKitPlayground.playground/Resources/SoccerBall@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/SpriteKitPlayground.playground/Resources/SoccerBall@2x.png -------------------------------------------------------------------------------- /SpriteKitPlayground.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/SpriteKitPlayground.playground/contents.xcplayground -------------------------------------------------------------------------------- /Swift Alps Game Jam.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/Swift Alps Game Jam.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Swift Alps Game Jam.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/Swift Alps Game Jam.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Swift Alps Game Jam.xcodeproj/xcshareddata/xcschemes/Swift Alps Game Jam.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSwiftAlps/GameJam/HEAD/Swift Alps Game Jam.xcodeproj/xcshareddata/xcschemes/Swift Alps Game Jam.xcscheme --------------------------------------------------------------------------------